Skip to content
Merged
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
17 changes: 17 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,20 @@ updates:
interval: weekly
cooldown:
default-days: 7
# codeql-action/init and codeql-action/analyze are two entry points into one
# action, and the bundle checks at runtime that both halves are the same release:
# "Loaded a configuration file for version '4.37.9', but running version '4.36.2'".
# Ungrouped, dependabot opens one pull request per path, so each one bumps half the
# pair and cannot pass its own CI. Grouping makes the pin move as the unit it is.
# The pattern is stated twice because a group covers version updates only unless it
# says otherwise: a security advisory on one half would arrive as its own
# single-dependency pull request and split the pin exactly as above.
groups:
codeql-action:
applies-to: version-updates
patterns:
- "github/codeql-action*"
codeql-action-security:
applies-to: security-updates
patterns:
- "github/codeql-action*"
Loading