chore: bump go directive to 1.26.5 to match the toolchain - #303
Merged
Conversation
The go directive lagged at 1.25.5 while the toolchain was pinned to go1.26.5, which was needlessly confusing. Set a single `go 1.26.5` directive and drop the now-redundant toolchain line, giving one source of truth for the language/toolchain version. CI reads go-version-file: go.mod, so it picks up 1.26.5 automatically. The Docker builder images, however, pin the Go version themselves and ship with GOTOOLCHAIN=local, so golang:1.25.5 refused the new directive (`go mod download` failed in the image-build workflow). Bump all five builder images to golang:1.26.5 to match. Build, test, and audit all pass. Spec: TBD Signed-off-by: Volkan Özçelik <volkan.ozcelik@broadcom.com>
v0lkan
force-pushed
the
chore/bump-go-directive-1.26.5
branch
from
July 26, 2026 03:35
6ab1dd8 to
31dcc25
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The go directive lagged at 1.25.5 while the toolchain was pinned to
go1.26.5, which was needlessly confusing. Set a single
go 1.26.5directive and drop the now-redundant toolchain line, giving one source
of truth for the language/toolchain version.
CI reads go-version-file: go.mod, so it picks up 1.26.5 automatically.
Build, test, and audit all pass.
Spec: TBD
Signed-off-by: Volkan Özçelik volkan.ozcelik@broadcom.com