Bump the Go toolchain to 1.26.7 for the stdlib security fixes - #10
Merged
Conversation
govulncheck gates CI on reachable vulnerabilities, and four now fire — all in the Go standard library, all fixed in go1.26.6: GO-2026-6218 (net/url), GO-2026-6090 (crypto/tls), GO-2026-5972 (encoding/asn1), GO-2026-5026 (net/http idna). Move both the .go-version pin and go.mod's go directive to 1.26.7. mise resolves the toolchain from go.mod first, and "mise run deps" guards that the two agree, so both must move together. Signed-off-by: John Sabath <john@reactor.inc>
johnsabath
force-pushed
the
john/bump-go-1.26.7
branch
from
August 19, 2026 23:26
65ba8ae to
fb9b70f
Compare
johnsabath
marked this pull request as ready for review
August 19, 2026 23:28
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.
Why
The
vulnCI job (govulncheck) gates on vulnerabilities with a call path reachable from this module. Four now fire — all in the Go standard library, all fixed in go1.26.6:The open PRs are red on this job.
main's last CI run (Aug 3) predates the disclosures and hasn't re-run since; the job re-queries the live vuln DB, so any new run — this one included — fails until the bump lands.What changed
Bump the Go toolchain to 1.26.7 (latest 1.26 patch). Both
.go-versionand go.mod'sgodirective move together: mise resolves the toolchain from go.mod first, andmise run depsguards that the two agree — bumping only.go-versionleaves CI on the old toolchain.Proof:
mise run deps,mise run vuln, andmise run licensespass locally under 1.26.7;go build ./...andgo vet ./...clean.