Skip to content

Commit f8b14a4

Browse files
committed
CI: upgrade to go 1.26
1 parent 1abc0ba commit f8b14a4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
go: ["1.24", "1.25"]
17+
go: ["1.25", "1.26"]
1818
steps:
1919
- uses: actions/checkout@v6
2020
- uses: actions/setup-go@v6
@@ -23,7 +23,7 @@ jobs:
2323
- name: Run tests
2424
run: |
2525
go test -v -race -coverprofile=coverage.txt -covermode=atomic -coverpkg=./... ./...
26-
- if: ${{ matrix.go == '1.25' }}
26+
- if: ${{ matrix.go == '1.26' }}
2727
uses: shogo82148/actions-goveralls@v1
2828
with:
2929
path-to-profile: coverage.txt
@@ -35,12 +35,12 @@ jobs:
3535
- uses: actions/checkout@v6
3636
- uses: actions/setup-go@v6
3737
with:
38-
go-version: "1.25"
38+
go-version: "1.26"
3939
cache: false
4040
- name: Run lint
4141
uses: golangci/golangci-lint-action@v9
4242
with:
43-
version: v2.8
43+
version: v2.9
4444
args: --timeout 5m
4545

4646
govulncheck:

0 commit comments

Comments
 (0)