Skip to content

Commit 1c6dcb7

Browse files
committed
fix(ci): install golangci-lint from source with Go 1.25 toolchain
1 parent 6f60368 commit 1c6dcb7

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,10 @@ jobs:
3535
- uses: actions/setup-go@v5
3636
with:
3737
go-version: '1.25'
38-
- uses: golangci/golangci-lint-action@v7
39-
with:
40-
version: v2.1.6
38+
- name: Install golangci-lint
39+
run: go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@latest
40+
- name: Run golangci-lint
41+
run: golangci-lint run
4142

4243
govulncheck:
4344
name: Govulncheck

0 commit comments

Comments
 (0)