Skip to content
Merged
Show file tree
Hide file tree
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
22 changes: 22 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,25 @@ updates:
reviewers:
- "Automattic/apps-infra-tooling"
open-pull-requests-limit: 5

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
open-pull-requests-limit: 10
groups:
actions-minor-patch:
patterns:
- "*"
update-types:
- "minor"
- "patch"
actions-major:
patterns:
- "*"
update-types:
- "major"
cooldown:
default-days: 7
semver-major-days: 14
Comment on lines +32 to +34

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

@mahangu in case you missed this

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

Copilot appears to be confidently incorrect here. 😬

I checked the current GitHub Dependabot docs, and cooldown is a supported v2 option for version updates, including github-actions.

ignore is not equivalent: it suppresses matching updates entirely, while cooldown delays eligible updates and lets them through later. So for “wait 7 days by default / 14 days for majors,” cooldown is the right mechanism.

2 changes: 1 addition & 1 deletion .github/workflows/gradle-wrapper-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: gradle/actions/wrapper-validation@v4
- uses: gradle/actions/wrapper-validation@ed408507eac070d1f99cc633dbcf757c94c7933a # v4.4.3
2 changes: 1 addition & 1 deletion .github/workflows/submit-gradle-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ jobs:
distribution: 'temurin'
java-version: '17'
- name: Setup Gradle to generate and submit dependency graphs
uses: gradle/actions/dependency-submission@v4
uses: gradle/actions/dependency-submission@ed408507eac070d1f99cc633dbcf757c94c7933a # v4.4.3
Comment on lines 18 to +19

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

This is intentional for this campaign. The PR scope is third-party actions outside github.com/Automattic ownership: actions/* are GitHub-owned actions, and Automattic/dangermattic is an Automattic-owned reusable workflow, so both are deliberately excluded here. The external third-party Gradle actions in this repo are the ones being pinned in this PR.

Loading