ci: suppress dependabot updates for test fixture manifests#477
Open
ruromero wants to merge 1 commit intoguacsec:mainfrom
Open
ci: suppress dependabot updates for test fixture manifests#477ruromero wants to merge 1 commit intoguacsec:mainfrom
ruromero wants to merge 1 commit intoguacsec:mainfrom
Conversation
The exclude-paths option only applies to version updates, not security
updates (per GitHub docs). This caused 26+ noisy PRs from dependabot
trying to bump intentionally-pinned vulnerable deps in test fixtures.
Replace the broad directory: "/" entries for non-JS ecosystems with
targeted directories pointing to the actual test fixture paths, paired
with ignore: [{dependency-name: "*"}] to suppress both version and
security update PRs.
For npm, add a separate entry targeting test fixture JS directories
with the same ignore rule, keeping the production root entry intact.
Also adds test/providers/provider_manifests/** to the production npm
exclude-paths and adds missing uv/gradle/cargo ecosystem entries.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.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
Problem:
exclude-pathsindependabot.ymlonly applies to version updates, not security updates. This caused 26+ noisy PRs from dependabot trying to bump intentionally-pinned vulnerable deps in test fixture manifests undertest/providers/tst_manifests/andtest/providers/provider_manifests/.Solution: Add dedicated dependabot entries per ecosystem that target the test fixture directories with
ignore: [{dependency-name: "*"}]to suppress both version and security update PRs (ref). Theignoreoption supports security updates unlikeexclude-paths.Changes
provider_manifests/**toexclude-pathsdirectoriestargeting all JS test fixture dirs +ignore: *directory: "/"entries with targeteddirectoriespointing to test fixture paths +ignore: *What this does NOT suppress
npm deps like
picomatchandbrace-expansionthat exist in both test fixtures AND the production transitive dependency tree. Ignoring those would also suppress legitimate production security updates.Test plan
🤖 Generated with Claude Code