chore: restrict Dependabot GitHub Actions updates to major versions only#333
Merged
Conversation
Adds an ignore block to the `github-actions` ecosystem entry so Dependabot only opens PRs for major version bumps (e.g., `v1` → `v2`), skipping minor and patch updates.
cryptodev-2s
approved these changes
Jul 2, 2026
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.
Dependabot was opening PRs for minor and patch updates to GitHub Actions (e.g.,
MetaMask/action-is-release@v2.2.0). Since we use floating major tags (e.g.,MetaMask/action-is-release@v2), minor and patch bumps are automatically picked up and don't need separate PRs. This adds anignoreblock to skipsemver-minorandsemver-patchupdates, so Dependabot will only open PRs for major version bumps (e.g.,v2→v3).Note
Low Risk
CI automation config only; no runtime or application code changes.
Overview
Dependabot for the
github-actionsecosystem now ignores minor and patch version updates via a newignoreblock ondependency-name: '*'.PRs will only be opened for major bumps (e.g.
@v2→@v3), which matches workflows that pin floating major tags likeMetaMask/action-checkout-and-setup@v3so routine patch/minor action releases do not generate redundant upgrade PRs.Reviewed by Cursor Bugbot for commit a2c7274. Bugbot is set up for automated code reviews on this repo. Configure here.