Skip to content
Open
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: 2 additions & 2 deletions .github/variables/go-versions.env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
latest=1.26.6
penultimate=1.25.13
latest=1.27.0

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Linter lacks Go 1.27 support

Medium Severity

CI now runs make lint on Go 1.27.0, but GOLANGCI_LINT_VERSION stays at v2.11.1, which only supports through Go 1.26. golangci-lint added 1.27 support in v2.13.0, so the lint job on latest Go is likely to fail or mis-analyze.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 3e43f98. Configure here.

penultimate=1.26.7
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# This is a standalone Dockerfile that does not depend on goreleaser building the binary
# It is NOT the version that is pushed to dockerhub
FROM golang:1.26.6-alpine3.24 as builder
FROM golang:1.27.0-alpine3.24 as builder
# See "Runtime platform versions" in CONTRIBUTING.md

RUN apk --no-cache add \
Expand Down
Loading