Skip to content
Merged
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
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
GO = go
STATICCHECK = honnef.co/go/tools/cmd/staticcheck@2025.1.1

# staticcheck reads the export data of the toolchain it runs under, so each
# release only understands the Go versions it shipped alongside. When a new Go
# release breaks the vet target, bump this pin to the first staticcheck that
# reads it, release candidate or not: 2026.2rc1 is the first to read Go 1.27.
# Keep it in step with the staticcheck step in .github/workflows/test.yml.
STATICCHECK = honnef.co/go/tools/cmd/staticcheck@2026.2rc1

all: check

Expand Down