From 7f4905588acb85c33b31dcd09e49b6224a91293b Mon Sep 17 00:00:00 2001 From: Ben Hoyt Date: Sat, 14 Sep 2024 17:19:52 +1200 Subject: [PATCH] Bump up minimum supported Go version to 1.18, and test on 1.23 --- .github/workflows/tests.yml | 8 ++++---- go.mod | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 630ffb9..ac3a9da 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - go: ['1.22', '1.21', '1.20', '1.19', '1.18', '1.17'] + go: ['1.23', '1.22', '1.21', '1.20', '1.19', '1.18'] name: Go ${{ matrix.go }} on Linux @@ -36,7 +36,7 @@ jobs: strategy: fail-fast: false matrix: - go: ['1.22'] + go: ['1.23'] name: Go ${{ matrix.go }} on Linux 386 @@ -59,7 +59,7 @@ jobs: strategy: fail-fast: false matrix: - go: ['1.22', '1.17'] + go: ['1.23', '1.18'] name: Go ${{ matrix.go }} on Windows @@ -85,7 +85,7 @@ jobs: strategy: fail-fast: false matrix: - go: ['1.22', '1.17'] + go: ['1.23', '1.18'] name: Go ${{ matrix.go }} on macOS diff --git a/go.mod b/go.mod index bcbe577..9425666 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module github.com/benhoyt/goawk -go 1.17 +go 1.18