fix(security): pin Go toolchain and bump x/sys to clear Grype scan failures - #131
Merged
Conversation
…ilures Weekly Security Scan job fails because the compiled binary embeds go1.26.4, which has two disclosed stdlib vulnerabilities (GO-2026-4970 high, GO-2026-5856 medium). golang.org/x/sys v0.41.0 also carries a low-severity issue (GO-2026-5024). Pin toolchain to go1.26.5 and bump x/sys to v0.44.0 to pick up the fixes. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
glageju
marked this pull request as ready for review
July 13, 2026 17:12
ChrisJBurns
approved these changes
Jul 13, 2026
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
image-scanjob fails because the compiled binary embeds go1.26.4, which has two disclosed stdlib vulnerabilities: GO-2026-4970 (high, symlink escape inos.Root) and GO-2026-5856 (medium, ECH key disclosure).golang.org/x/sys v0.41.0also carries a low-severity issue (GO-2026-5024).toolchain go1.26.5in go.mod soactions/setup-gobuilds with the patched Go release, and bumpgolang.org/x/systo v0.44.0.Test plan
go build ./...andgo vet ./...passgo test ./...passes (full suite, including metadata propagation tests)info,list-tools, andcall-tool echoall returned correct results🤖 Generated with Claude Code