Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable gomod ind. deps for vulnerabilities. #143

Merged
merged 1 commit into from
Jun 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions renovate/defaults.json5
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,23 @@ Validate this file before commiting with (from repository root):
// such that security-alert PRs may be opened immediately.
"vulnerabilityAlerts": {
"labels": ["dependencies", "security"],

// Force-enable renovate management of deps. which are otherwise
// disabled. Note: Does not apply to any "ignorePaths" list, nor
// any deps. disabled via `packageRules` in this block
// (last-match wins rule).
"enabled": true,

// Indirect dependencies are disabled by default for the `gomod` manager.
// However, for vulnerability updates we may want them even if they break
// during renovate's automatic top-level `go mod tidy`.
"packageRules": [
{
"matchManagers": ["gomod"],
"matchDepTypes": ["indirect"],
"enabled": true,
}
]
},

// On a busy repo, automatic-rebasing will swamp the CI system.
Expand Down