Stop Renovate from duplicating Dependabot's github-actions and security PRs#250
Merged
Conversation
Renovate's config:recommended preset covers github-actions, which overlapped with dependabot.yml's github-actions ecosystem entry and produced duplicate/conflicting PRs for the same actions (e.g. #246 vs #243 for actions/checkout, #223 vs #240/#238 for the artifact actions). It also raised its own vulnerability-fix PRs (e.g. #239) on top of GitHub's native Dependabot security alerts. Dependabot stays the sole authority for github-actions version bumps and security alerts; Renovate keeps handling pyproject.toml and pyenv currency, where Dependabot has no equivalent config. Signed-off-by: chris hay <chris.hay@uk.ibm.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
This repo runs both Dependabot (`.github/dependabot.yml`, scoped to `github-actions`) and Renovate (`renovate.json`, `config:recommended`). Renovate's recommended preset also covers github-actions and raises its own vulnerability-fix PRs, so the two bots were fighting over the same updates:
This PR disables Renovate for `github-actions` and `vulnerabilityAlerts` so Dependabot stays the sole authority for both going forward. Renovate keeps handling `pyproject.toml` and `.python-version` currency, which Dependabot has no config for here.
Test plan