fix: upgrade to go 1.25 versions for remaining 11 HIGH CVEs - #746
Closed
qiluo-msft wants to merge 1 commit into
Closed
fix: upgrade to go 1.25 versions for remaining 11 HIGH CVEs#746qiluo-msft wants to merge 1 commit into
qiluo-msft wants to merge 1 commit into
Conversation
Upgrades from go 1.24-compatible versions to go 1.25-required versions, fixing 11 additional HIGH CVEs: - google.golang.org/grpc v1.80.0 -> v1.82.1 (GHSA-hrxh-6v49-42gf) - golang.org/x/crypto v0.48.0 -> v0.52.0 (CVE-2026-39828, 39829, 39830, 39831, 39832) - golang.org/x/net v0.49.0 -> v0.55.0 (CVE-2026-25681, 2026-27136, 2026-33814, 2026-39821) - golang.org/x/text v0.34.0 -> v0.39.0 (CVE-2026-56852) ci: add Go 1.25 setup to CodeQL workflow so CodeQL can resolve modules requiring go >= 1.25.0 (grpc v1.82.1, x/crypto v0.52.0). Depends on: #744
Contributor
|
/azp run |
|
Azure Pipelines: There may be pipelines that require an authorized user to comment /azp run to run. |
|
Azure Pipelines: 1 pipeline(s) were filtered out due to trigger conditions. |
Collaborator
Author
|
Superseded by new PR with DCO sign-off fixed. |
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 I did it
Follow-up to #744. Upgrades from go 1.24-compatible versions to go 1.25-required versions, fixing the remaining 11 HIGH CVEs that were blocked by CodeQL's Go 1.24 toolchain.
How I did it
google.golang.org/grpcgolang.org/x/cryptogolang.org/x/netgolang.org/x/textReplace directives aligned with
go mod tidyselected versions (glog v1.2.5, x/sys v0.45.0, protobuf v1.36.11).CodeQL workflow: Added
setup-go@v5withgo-version: '1.25'so CodeQL can resolve modules requiring go ≥ 1.25.Depends on
#744 must be merged first (or rebase onto master after #744 merges).
How to verify it