Skip to content

Commit

Permalink
drop Go 1.21, add Go 1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdan committed Sep 23, 2024
1 parent 3a65db1 commit 5ce929e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/rogpeppe/go-internal

go 1.21
go 1.22

require (
golang.org/x/mod v0.18.0
Expand Down

0 comments on commit 5ce929e

Please sign in to comment.