Skip to content

Commit bbb4749

Browse files
Test against Go 1.24 through 1.26
Committed-By-Agent: codex Co-authored-by: codex <noreply@openai.com>
1 parent c254b2a commit bbb4749

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v6
1919
- uses: actions/setup-go@v6
2020
with:
21-
go-version: "1.23"
21+
go-version: "1.26"
2222
cache: true
2323
- name: Install govulncheck
2424
run: go install golang.org/x/vuln/cmd/govulncheck@latest

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
go-version: ["1.21", "1.22", "1.23"]
17+
go-version: ["1.24", "1.25", "1.26"]
1818
env:
1919
GOFLAGS: -mod=vendor
2020
steps:
@@ -39,7 +39,7 @@ jobs:
3939
- uses: actions/checkout@v6
4040
- uses: actions/setup-go@v6
4141
with:
42-
go-version: "1.23"
42+
go-version: "1.26"
4343
cache: true
4444
- name: Race tests
4545
run: go test -race -v -timeout 2m -failfast ./...
@@ -53,7 +53,7 @@ jobs:
5353
- uses: actions/checkout@v6
5454
- uses: actions/setup-go@v6
5555
with:
56-
go-version: "1.23"
56+
go-version: "1.26"
5757
cache: true
5858
- name: Integration tests
5959
run: go test -race -v -timeout 2m -failfast -tags=integration ./cmd/...
@@ -67,7 +67,7 @@ jobs:
6767
- uses: actions/checkout@v6
6868
- uses: actions/setup-go@v6
6969
with:
70-
go-version: "1.23"
70+
go-version: "1.26"
7171
cache: true
7272
- name: Generate coverage
7373
run: go test -v -timeout 2m -failfast -covermode atomic -coverprofile=.covprofile ./...
@@ -85,7 +85,7 @@ jobs:
8585
- uses: actions/checkout@v6
8686
- uses: actions/setup-go@v6
8787
with:
88-
go-version: "1.23"
88+
go-version: "1.26"
8989
cache: true
9090
- name: Check vendor tree
9191
run: |

0 commit comments

Comments
 (0)