Skip to content
Open
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
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@ updates:
ignore:
- dependency-name: "@types/react"
update-types: ["version-update:semver-major"]
- dependency-name: "*"
update-types: ["version-update:semver-patch"]
Comment on lines +22 to +23

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

This change introduces a significant security risk. By ignoring all patch-level updates (version-update:semver-patch) for all dependencies (*), you will also be ignoring security updates that are released as patch versions. The Dependabot documentation states that ignore rules apply to both version updates and security updates. This could leave your project vulnerable to known exploits.

It is highly recommended to remove this configuration. If the goal is to reduce the number of pull requests from Dependabot, consider using update grouping instead to combine multiple updates into a single pull request.