From 5ce929e65f38a45eb82649213f81a56309bb23d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Fri, 20 Sep 2024 13:34:59 +0100 Subject: [PATCH] drop Go 1.21, add Go 1.23 --- .github/workflows/test.yml | 4 ++-- go.mod | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4d7234b..5416122 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,8 +12,8 @@ jobs: fail-fast: false matrix: go-version: - - '1.21.x' - '1.22.x' + - '1.23.x' os: - ubuntu-latest - macos-latest @@ -33,7 +33,7 @@ jobs: go test -race ./... - name: Tidy - if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.22.x' # no need to do this everywhere + if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.x' # no need to do this everywhere run: | go mod tidy diff --git a/go.mod b/go.mod index 6b4304f..58d0c9e 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/rogpeppe/go-internal -go 1.21 +go 1.22 require ( golang.org/x/mod v0.18.0