fix: upgrade extras/dagger deps to resolve 4 security advisories#3277
Merged
migmartri merged 1 commit intoJul 9, 2026
Merged
Conversation
Combined upgrade of the extras/dagger module dependencies to resolve all four open security advisories in a single change, since the individual bot PRs (chainloop-dev#3273, chainloop-dev#3274, chainloop-dev#3275, chainloop-dev#3276) conflict with each other by modifying the same go.mod lines. Advisories resolved: - GHSA-p77j-4mvh-x3m3 (CRITICAL): gRPC-Go authorization bypass via missing leading slash in :path. Fixed by grpc v1.80.0 (>= v1.79.3). - GHSA-mh2q-q3fh-2475 (HIGH): OpenTelemetry-Go baggage header DoS. Fixed by OTel v1.43.0 (>= v1.41.0). - GHSA-hfvc-g4fc-pqhx (HIGH): OpenTelemetry-Go BSD kenv PATH hijack. Fixed by OTel SDK v1.43.0. - GO-2026-5026 (HIGH): golang.org/x/net idna Punycode bypass. Fixed by x/net v0.55.0. Assisted-by: Claude Code Signed-off-by: Miguel Martinez <migmartri@gmail.com> Signed-off-by: Miguel Martinez Trivino <miguel@chainloop.dev>
22a8ad4 to
27512a4
Compare
Member
Author
|
@matiasinsaurralde could I get a review here? I want to remove the noise |
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
Combined upgrade of the
extras/daggermodule dependencies to resolve all four open security advisories in a single change. The individual bot PRs (#3273, #3274, #3275, #3276) conflict with each other because they all modify the samego.modlines, so they cannot be merged independently.Advisories Resolved
google.golang.org/grpcgo.opentelemetry.io/otelgo.opentelemetry.io/otel/sdkgolang.org/x/netWhy a combined PR?
The four bot PRs each touch the same
extras/dagger/go.modlines (OTel, x/net, grpc). Merging any one of them causes merge conflicts on the others. This PR takes the highest version of each dependency across all four PRs and applies them together.Supersedes
Closes #3273, #3274, #3275, #3276.
Assisted-by: Claude Code