Skip to content

Commit 57a3b42

Browse files
tklausermvdan
authored andcommitted
.github/workflows: update to Go 1.23, drop Go 1.21
1 parent d51a199 commit 57a3b42

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
test:
55
strategy:
66
matrix:
7-
go-version: [1.21.x, 1.22.x]
7+
go-version: [1.22.x, 1.23.x]
88
os: [ubuntu-latest, macos-latest, windows-latest]
99
runs-on: ${{ matrix.os }}
1010
steps:
@@ -17,7 +17,7 @@ jobs:
1717

1818
# Static checks from this point forward. Only run on one Go version and on
1919
# Linux, since it's the fastest platform, and the tools behave the same.
20-
- if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.22.x'
20+
- if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.x'
2121
run: diff <(echo -n) <(gofmt -s -d .)
22-
- if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.22.x'
22+
- if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.x'
2323
run: go vet ./...

0 commit comments

Comments
 (0)