From 46a16b3778b0f835f3167a9fffa809f9ebc05513 Mon Sep 17 00:00:00 2001 From: Jesse Donat Date: Mon, 6 May 2024 12:06:41 -0500 Subject: [PATCH] Upgrade minimum Go to 1.17 --- .github/workflows/ci.yml | 2 +- go.mod | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ef39dc..6ed0482 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ jobs: test: strategy: matrix: - go-version: [1.13.x, 1.14.x, 1.15.x, 1.16.x, 1.17.x, 1.18.x, 1.19.x, 1.20.x, 1.21.x] + go-version: [1.17.x, 1.18.x, 1.19.x, 1.20.x, 1.21.x, 1.22.x] platform: [ubuntu-latest] runs-on: ${{ matrix.platform }} steps: diff --git a/go.mod b/go.mod index 3d8d199..80b1727 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,7 @@ module github.com/donatj/ghemoji -go 1.13 +go 1.17 require github.com/mattn/go-isatty v0.0.20 + +require golang.org/x/sys v0.6.0 // indirect