fix(ci): bump Go toolchain to 1.25.11 (clears GO-2026-5039/5037 stdlib vulns)#23
Merged
Merged
Conversation
…b vulns) The govulncheck and osv-scan required checks fail on both master and Dependabot PR #22 due to two Go stdlib vulnerabilities present in the go1.25.10 toolchain that CI builds with: - GO-2026-5039 (net/textproto): arbitrary inputs included in errors without escaping. Fixed in go1.25.11. - GO-2026-5037 (crypto/x509): inefficient candidate hostname parsing. Fixed in go1.25.11. These are stdlib vulns, not module deps, so they are unrelated to the actions-group bump in #22. govulncheck.yml resolves its toolchain from go.mod (go-version-file + check-latest), so bumping the toolchain directive to go1.25.11 clears both checks and unblocks master and #22. Co-Authored-By: Claude Opus 4.8 (1M context) <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.
Problem
The required CI checks
govulncheckandscan / osv-scanfail on bothmasterand the open Dependabot PR #22. The failures are Go stdlib vulnerabilities present in thego1.25.10toolchain CI builds with — not module deps and not caused by the actions-group bump in #22:net/textproto— arbitrary inputs included in errors without escaping. Found in go1.25.10, fixed in go1.25.11.crypto/x509— inefficient candidate hostname parsing. Found in go1.25.10, fixed in go1.25.11.Fix
Bump the
toolchaindirective ingo.modfromgo1.25.10→go1.25.11.govulncheck.ymlresolves its toolchain fromgo.mod(go-version-file: cli/go.mod+check-latest: true), so the patch release clears both stdlib vulns.Impact
master(both govulncheck and osv-scan go green).🤖 Generated with Claude Code