Skip to content

Commit 6a1fbcc

Browse files
authored
chore(deps): enable Renovate updates for indirect Go modules (#972)
## Summary - Renovate's `gomod` manager [disables indirect-dep updates by default](https://docs.renovatebot.com/modules/manager/gomod/). The existing `go-indirect` rule sets a `groupName` but never flips `enabled`, so indirect deps never get PRs. - Set `"enabled": true` on that rule. #971 is the manual catch-up for deps that have been dormant under this rule.
1 parent e881963 commit 6a1fbcc

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

renovate.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"description": "Group all indirect Go dependencies",
2222
"matchManagers": ["gomod"],
2323
"matchDepTypes": ["indirect"],
24-
"groupName": "go-indirect"
24+
"groupName": "go-indirect",
25+
"enabled": true
2526
},
2627
{
2728
"description": "Group GitHub Actions updates",

0 commit comments

Comments
 (0)