Skip to content

Commit 3d35f9b

Browse files
committed
chore: update github workflow for new Go version
1 parent c630fdd commit 3d35f9b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/pull-request.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,25 @@ jobs:
1414
- name: Get sources
1515
uses: actions/checkout@v4
1616

17-
- name: Set up Go 1.24.4
17+
- name: Set up Go 1.26
1818
uses: actions/setup-go@v5
1919
with:
20-
go-version: "1.24.4"
20+
go-version: "1.26"
2121

2222
- name: Run go mod tidy
2323
run: go mod tidy
2424

2525
- name: Run golangci-lint
26-
uses: golangci/golangci-lint-action@v6
26+
uses: golangci/golangci-lint-action@v9
2727
with:
28-
version: v1.64.8
28+
version: 2.11
2929
args: --timeout=500s
3030
skip-cache: true
3131

3232
- name: Run govulncheck
3333
uses: golang/govulncheck-action@v1
3434
with:
35-
go-version-input: 1.24
35+
go-version-input: 1.26
3636
go-package: ./...
3737

3838
- name: Run tests

0 commit comments

Comments
 (0)