chore: bump Go to 1.26.6 - #57
Merged
Merged
Conversation
govulncheck fails on every open PR with five stdlib vulnerabilities (GO-2026-6218, GO-2026-6090, GO-2026-6089, GO-2026-5972, GO-2026-5026) present in go1.26.5 and fixed in go1.26.6. CI resolves the toolchain from go.mod, so bumping the directive clears the check everywhere. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01FJnTGiMuTJSFUVRRqjfTbV
vendor-core-crds resolved the module directory with 'go list -m', which does not download the module. On a cold module cache — any PR that changes go.mod/go.sum misses the setup-go cache — .Dir is empty and the copy fails with cp: cannot stat '/pkg/apis/crds/...'. This is why the generate job failed on dependabot bumps. Download the module first and fail loudly if the dir still cannot be resolved. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01FJnTGiMuTJSFUVRRqjfTbV
Contributor
Author
|
Pushed a second commit: the |
This was referenced Aug 25, 2026
Review caught that 1.26.6 was already superseded by 1.26.7 within its minor line. Pin the Dockerfile builder to golang:1.26.7-alpine so the shipped binary is built with the toolchain CI tests with (official golang images set GOTOOLCHAIN=local, so a floating 1.26-alpine tag can lag go.mod and hard-fail the release build). Record both changes under [Unreleased]. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01FJnTGiMuTJSFUVRRqjfTbV
This was referenced Aug 25, 2026
Merged
stubbi
added a commit
that referenced
this pull request
Aug 26, 2026
Chart 2.1.1 / appVersion 2.1.1. Ships the events.k8s.io RBAC grant (#52), the Go 1.26.7 toolchain rebuild clearing five stdlib CVEs (#57), and dependency bumps (karpenter 1.14.1, hcloud-go 2.47.0, k8s.io 0.36.4) (#58). Claude-Session: https://claude.ai/code/session_01FJnTGiMuTJSFUVRRqjfTbV Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
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.
govulncheck fails on every open PR with five Go stdlib vulnerabilities (GO-2026-6218, GO-2026-6090, GO-2026-6089, GO-2026-5972, GO-2026-5026) that are present in go1.26.5 and fixed in go1.26.6. CI resolves its toolchain from
go.mod(go-version-file), so bumping thegodirective clears the check for the repo and all open PRs once they pick up the new merge ref.Verified locally with go1.26.6:
go build ./...andgo test -count=1 ./...green.🤖 Generated with Claude Code
https://claude.ai/code/session_01FJnTGiMuTJSFUVRRqjfTbV