Skip to content

Commit 5c10154

Browse files
committed
add Go 1.21, drop 1.19
1 parent 8a0a9dc commit 5c10154

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
test:
55
strategy:
66
matrix:
7-
go-version: [1.19.x, 1.20.x]
7+
go-version: [1.20.x, 1.21.x]
88
os: [ubuntu-latest, macos-latest, windows-latest]
99
runs-on: ${{ matrix.os }}
1010
steps:
@@ -20,5 +20,5 @@ jobs:
2020
- uses: actions/checkout@v3
2121
- uses: actions/setup-go@v4
2222
with:
23-
go-version: 1.20.x
23+
go-version: 1.21.x
2424
- run: go test ./...

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
test:
1414
strategy:
1515
matrix:
16-
go-version: [1.19.x, 1.20.x]
16+
go-version: [1.20.x, 1.21.x]
1717
os: [ubuntu-latest, macos-latest, windows-latest]
1818
runs-on: ${{ matrix.os }}
1919
steps:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module mod.test/actions
22

3-
go 1.19
3+
go 1.20
44

55
require rsc.io/quote v1.5.2
66

0 commit comments

Comments
 (0)