fix(deps): resolve docker/docker dependabot alerts (5 dismissed — no go-importable fix)#20
Merged
Merged
Conversation
…sts (closes 5 Dependabot alerts) v28.5.2+incompatible is the highest version on the Go module proxy; v29.3.1 (the patched version for GHSA-x744-4wpc-v9h2) is not published as a Go module. The other four advisories (GHSA-x86f-5xw2-fm2r, GHSA-rg2x-37c3-w2rh, GHSA-vp62-88p7-qqf5, GHSA-pxq6-2prw-chj9) have no patched version at all. docker/docker is a transitive-only indirect dep — `go mod why docker/docker` returns "main module does not need package github.com/docker/docker". The ci-generator never imports or invokes docker directly; the library is dragged in via the workflow engine SDK's container build steps, which this plugin does not call. All five CVEs are moby daemon-side vulnerabilities, not reachable here. Adds decisions/0001-docker-cve-risk-acceptance.md documenting the analysis (mirrors GoCodeAlone/workflow ADR 0015). The 5 Dependabot alerts are dismissed as tolerable_risk via the GitHub API. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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
github.com/docker/docker(3 high / 2 medium)docker/dockeris a transitive indirect dep viaGoCodeAlone/workflow; the ci-generator itself never imports it (go mod whyconfirms this)v28.5.2+incompatibleis the highest version on the Go module proxy;v29.3.1(the patched version for GHSA-x744-4wpc-v9h2) is not published as a+incompatibleGo module; three other advisories have no patched version at alldocker cpraces, AuthZ-plugin bypass) — not reachable from this CI config generator plugindecisions/0001-docker-cve-risk-acceptance.mddocumenting the analysis (mirrorsGoCodeAlone/workflowADR 0015)tolerable_riskvia GitHub APIVerification
GOWORK=off go build ./...passesGOWORK=off go test ./...passes (all 3 test packages green)go mod tidyis a no-op (docker/docker remains because workflow engine requires it; no version to bump to)Follow-up
When moby publishes a go-gettable v29.x
+incompatibletag (or renames togithub.com/moby/moby ≥ 29.3.1), bumpGoCodeAlone/workflowand the alerts will auto-resolve.Copilot review not requested (down).
🤖 Generated with Claude Code