chore(renovate): enable updates for indirect Go dependencies - #118
Merged
Conversation
Renovate's gomod manager skips deps marked `// indirect` unless a rule enables them, so transitive modules were never proposed for update. That is where Go CVEs usually land. golang.org/x/net is the current example: v0.56.0 has been available since 2026-06-09 and fixes CVE-2026-46600 (HIGH), but go.mod still pins v0.55.0 because the dep is indirect. The last bump to v0.55 (#110) was hand-written for the same reason. The new rule only sets `enabled`, so the grouping and automerge from the "Go dependencies (non-major)" rule still apply, and it is placed before the major rule so major bumps stay disabled. Validated with renovate-config-validator.
carole-lavillonniere
requested review from
dfangl,
dominikschubert and
joe4dev
as code owners
August 13, 2026 13:02
carole-lavillonniere
marked this pull request as draft
August 13, 2026 13:04
carole-lavillonniere
marked this pull request as ready for review
August 13, 2026 14: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.
Renovate was not opening PR for go indirect dependencies.
We currently have a CVE in this indirect dep:
golang.org/x/netis// indirectin ourgo.mod.v0.56.0has been available since 2026-06-09var/rapid/initon all 34 lambda-images runtimesgolang.org/x/netto v0.55.0 for CVEs fixes #110 (bump golang.org/x/net to v0.55), was hand-written for the same reasonOnce merged, Renovate should open a "Go dependencies (non-major)" PR bumping
x/nettov0.56.0and automerge it when CI is green.