Skip to content

Commit 0e03322

Browse files
committed
add Go 1.24.x, drop 1.22.x
1 parent 447d509 commit 0e03322

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
test:
55
strategy:
66
matrix:
7-
go-version: [1.22.x, 1.23.x]
7+
go-version: [1.23.x, 1.24.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.23.x'
20+
- if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.24.x'
2121
run: diff <(echo -n) <(gofmt -s -d .)
22-
- if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.x'
22+
- if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.24.x'
2323
run: go vet ./...

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module mvdan.cc/unparam
22

3-
go 1.22.0
3+
go 1.23
44

55
require (
66
github.com/rogpeppe/go-internal v1.13.2-0.20241226121412-a5dc8ff20d0a

0 commit comments

Comments
 (0)