fix(deps): patch grpc and containerd CVEs - #800
Merged
michaeljguarino merged 1 commit intoSep 12, 2026
Conversation
plural-copilot
Bot
requested review from
floreks,
maciaszczykm,
michaeljguarino and
zreigz
as code owners
September 12, 2026 02:55
Contributor
Author
There was a problem hiding this comment.
This PR was generated by the codex Plural Agent Runtime. Here's some useful information you might want to know to evaluate the ai's perfomance:
| Name | Details |
|---|---|
| 💬 Prompt | Create one focused PR to remediate the two reported vulnerabilities in ghcr.io/pluralsh/console:0.12.42, whose Go dependency source is authoritatively mapped to this repository (pluralsh/plural-cli). Do not make any GitOps, deployment, or image tag-promotion changes.... |
| 🔗 Run history | View run history |
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
Contributor
|
michaeljguarino
approved these changes
Sep 12, 2026
michaeljguarino
deleted the
agent/fix-cve-go-dependencies-1789181709190
branch
September 12, 2026 03:05
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
Remediates the two reported Go dependency vulnerabilities in the source repository authoritatively mapped to
ghcr.io/pluralsh/console:0.12.42:google.golang.org/grpcv1.83.1 -> v1.83.2 (the smallest requested fixed release).github.com/containerd/containerdv1.7.33 -> v1.7.35 (the minimum requested fixed release).Why this fixes the Console image finding
The repository Dockerfile copies
go.mod/go.sum, downloads the module graph, and statically builds./cmd/plural. The CIbuild-imagejob builds that Dockerfile and publishesghcr.io/pluralsh/plural-cli. Per the authoritative image-to-source mapping, Console image Go findings are remediated in this repository’s CLI module; no GitOps, deployment, promotion, Dockerfile, or image-tag changes are needed.google.golang.org/grpcis linked throughpkg/provider/gcp.github.com/containerd/containerdis also linked Go code, not a base-image or bundled-runtime component:go mod why -m github.com/containerd/containerdreportspkg/pr -> helm.sh/helm/v3/pkg/registry -> github.com/containerd/containerd/remotes. Updating the indirect module requirement therefore remediates the code compiled into the CLI binary.Scope
Only generated Go module metadata changed:
go.mod— bump the direct grpc requirement and the indirect containerd requirement.go.sum— replace the corresponding grpc and containerd checksums.The updates were generated with standard Go tooling:
Validation
Passed:
The final resolver output was:
Attempted the documented test target in the supplied test container:
It executed the repository’s race-enabled suite and showed passing tests, but the explicit 700-second command timeout stopped it before completion; gotestsum reported two timeout-induced failures while two packages were still running. A focused race rerun (
go test -race ./cmd/command/cd ./cmd/command/crypto, 5-minute limit) and productiondocker build(12-minute limit) also reached their intentional compilation time limits in this constrained environment. Docker was available and no containers were left running. The pre-existing test-image default command is ineffective without a repository bind mount because.dockerignoreexcludesMakefile; this PR deliberately does not broaden scope to fix that unrelated issue.Hosted CI should run the full test suite and production image build with its normal resources/cache.