chore: exclude test fixture manifests from Dependabot#409
Merged
ruromero merged 1 commit intoguacsec:mainfrom Apr 13, 2026
Merged
chore: exclude test fixture manifests from Dependabot#409ruromero merged 1 commit intoguacsec:mainfrom
ruromero merged 1 commit intoguacsec:mainfrom
Conversation
The src/test/resources/tst_manifests/ directory contains intentionally pinned (and sometimes vulnerable) dependencies used as test data. Dependabot was raising version and security update PRs for these fixtures, which should never be upgraded automatically. Add ecosystem entries for npm, pip, gomod, gradle, and cargo with exclude-paths covering src/test/** and open-pull-requests-limit: 0 so Dependabot skips those manifests entirely for version updates. Note: exclude-paths does not apply to Dependabot security updates. Security update PRs for test fixtures must be closed manually and their alerts dismissed. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Contributor
Review Summary by QodoAdd Dependabot exclusions for test fixture manifests
WalkthroughsDescription• Add Dependabot ecosystem entries for npm, pip, gomod, gradle, cargo • Exclude test fixture manifests in src/test/** from version updates • Set open-pull-requests-limit to 0 to prevent automatic PRs • Test fixtures contain intentionally pinned vulnerable dependencies Diagramflowchart LR
A["dependabot.yml"] -->|"Add npm, pip, gomod,<br/>gradle, cargo entries"| B["Exclude src/test/**"]
B -->|"Set limit to 0"| C["Prevent test fixture<br/>version update PRs"]
File Changes1. .github/dependabot.yml
|
Contributor
Code Review by Qodo
|
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
exclude-paths: ["src/test/**"]andopen-pull-requests-limit: 0src/test/resources/tst_manifests/Note:
exclude-pathsonly applies to Dependabot version updates. Security update PRs for test fixtures (e.g. #403, #404, #405, #407) must be closed manually and their alerts dismissed.Test plan
dependabot.ymlis valid YAMLsrc/test/manifests🤖 Generated with Claude Code