fix(deps): bump grpc and golang.org/x modules past known vulnerabilities#104
Open
josep-reyero wants to merge 1 commit into
Open
fix(deps): bump grpc and golang.org/x modules past known vulnerabilities#104josep-reyero wants to merge 1 commit into
josep-reyero wants to merge 1 commit into
Conversation
MegaLinter's grype scan blocks all PRs on three known vulnerabilities in indirect dependencies: - google.golang.org/grpc v1.81.1 -> v1.82.1 (GHSA-hrxh-6v49-42gf, High) - golang.org/x/crypto v0.53.0 -> v0.54.0 (GO-2026-5932) - golang.org/x/text v0.38.0 -> v0.40.0 (GO-2026-5970; v0.54.0 of x/crypto requires x/text v0.40.0) go mod tidy is clean and go build/test pass. Signed-off-by: Josep Garcia-Reyero Sais <josepreyero@gmail.com>
There was a problem hiding this comment.
Claude Code Review
This repository is configured for manual code reviews. Comment @claude review for a one-time review, or @claude review always to subscribe this PR to a review on every future push.
Tip: disable this comment in your organization's Code Review settings.
Contributor
There was a problem hiding this comment.
Pull request overview
Updates indirect Go dependencies to address security advisories and unblock MegaLinter.
Changes:
- Upgrades gRPC and
x/textbeyond vulnerable versions. - Updates related
golang.org/xdependencies. - Refreshes module checksums.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
go.mod |
Updates indirect dependency versions. |
go.sum |
Refreshes checksums for upgraded modules. |
| go.opentelemetry.io/otel/metric v1.44.0 // indirect | ||
| go.opentelemetry.io/proto/otlp v1.10.0 // indirect | ||
| golang.org/x/crypto v0.53.0 // indirect | ||
| golang.org/x/crypto v0.54.0 // indirect |
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.
MegaLinter's grype scan currently blocks all PRs (first seen on #103, which doesn't touch dependencies) on three known vulnerabilities in indirect deps:
google.golang.org/grpcgolang.org/x/cryptogolang.org/x/text(
x/textgoes to v0.40.0 rather than the minimal v0.39.0 becausex/cryptov0.54.0 requires it.)go mod tidyclean;go build ./...andgo test ./...pass. Routine minor bumps of non-LFX indirect modules — no pinned LFX service module is touched.Unblocks MegaLinter for #103 and any other open PR.