chore: bump Go toolchain to 1.26.3#17
Merged
Merged
Conversation
govulncheck flags two stdlib CVEs on the current 1.26.2 pin, blocking PR merges via the Security CI job: - GO-2026-4971: net.Dial / LookupPort panic on NUL byte (Windows) - GO-2026-4918: net/http HTTP/2 transport infinite loop on bad SETTINGS_MAX_FRAME_SIZE Both are explicitly listed as fixed in [email protected] / net/[email protected]. Bump go.mod's toolchain directive and every actions/setup-go pin in the CI, CodeQL, and release workflows so they match. No code changes. Dockerfile.dev pins golang:1.26-alpine and floats minor patches automatically, so it doesn't need an edit.
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.
Summary
govulncheckflags two stdlib CVEs on the currentgo 1.26.2pin, blocking the Security CI job on any open PR (including #16):net.Dial/net.LookupPortpanic when given a NUL byte on Windows. Fixed in[email protected].SETTINGS_MAX_FRAME_SIZEinnet/http/internal/http2. Fixed innet/[email protected].Both advisories list
1.26.3explicitly as the fix version, so the minimum-viable bump is one patch level. No application code changes.Changes
go.mod:go 1.26.2→go 1.26.3.github/workflows/ci.yml: sixgo-version: "1.26.2"+ onego-version-input: "1.26.2"→1.26.3.github/workflows/codeql.yml:go-version→1.26.3.github/workflows/release.yml:go-version→1.26.3Dockerfile.devis unchanged — it pinsgolang:1.26-alpinewhich floats minor patches automatically.Test plan