Skip to content

Commit 2b69615

Browse files
authored
Go 1.22 support (#935)
1 parent 06fb30b commit 2b69615

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
1515
- name: Setup go
1616
uses: actions/setup-go@v4
1717
with:
18-
go-version: "1.21"
18+
go-version: "1.22"
1919
- name: Run tests with coverage
2020
run: ./ci.sh coverage -d "${GITHUB_BASE_REF-HEAD}"

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Go
2323
uses: actions/setup-go@v4
2424
with:
25-
go-version: "1.21"
25+
go-version: "1.22"
2626
- name: Login to GitHub Container Registry
2727
uses: docker/login-action@v3
2828
with:

.github/workflows/workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ 'ubuntu-latest', 'windows-latest', 'macos-latest', 'macos-14' ]
15-
go: [ '1.20', '1.21' ]
15+
go: [ '1.21', '1.22' ]
1616
runs-on: ${{ matrix.os }}
1717
name: ${{ matrix.go }}/${{ matrix.os }}
1818
steps:

fuzz_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
//go:build go1.18 || go1.19 || go1.20 || go1.21
2-
// +build go1.18 go1.19 go1.20 go1.21
1+
//go:build go1.18 || go1.19 || go1.20 || go1.21 || go1.22
2+
// +build go1.18 go1.19 go1.20 go1.21 go1.22
33

44
package toml_test
55

ossfuzz/fuzz.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
//go:build go1.18 || go1.19 || go1.20 || go1.21
2-
// +build go1.18 go1.19 go1.20 go1.21
1+
//go:build go1.18 || go1.19 || go1.20 || go1.21 || go1.22
2+
// +build go1.18 go1.19 go1.20 go1.21 go1.22
33

44
package ossfuzz
55

0 commit comments

Comments
 (0)