Skip to content

Commit 7f67b6d

Browse files
committedFeb 11, 2025
add Go 1.24.x, drop 1.22.x
1 parent 72e26aa commit 7f67b6d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
test-nocache:
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:
@@ -21,5 +21,5 @@ jobs:
2121
- uses: actions/checkout@v4
2222
- uses: actions/setup-go@v5
2323
with:
24-
go-version: 1.23.x
24+
go-version: 1.24.x
2525
- run: go test ./...

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
test:
1414
strategy:
1515
matrix:
16-
go-version: [1.22.x, 1.23.x]
16+
go-version: [1.23.x, 1.24.x]
1717
os: [ubuntu-latest, macos-latest, windows-latest]
1818
runs-on: ${{ matrix.os }}
1919
steps:

‎go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module mod.test/actions
22

3-
go 1.22
3+
go 1.23
44

55
require rsc.io/quote v1.5.2
66

0 commit comments

Comments
 (0)