Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
# Pin to v1.64.8 (last v1 release) to pair with the v1-format
# .golangci.yml. `latest` can drift to v2 and fail config parsing.
version: v1.64.8
args: --timeout=5m
skip-cache: true

Expand Down
4 changes: 4 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ run:
timeout: 5m
tests: true
# Cache bust: 2025-08-15
# Pin lint target to Go 1.24 so the analyser (built against Go 1.24 in
# golangci-lint v1.64.x) does not bail out on go.mod's 1.26.1 directive.
# Remove once golangci-lint ships a Go 1.26 binary and we can migrate to v2.
go: "1.24"

linters:
enable:
Expand Down
Loading