Skip to content

Commit ed59e97

Browse files
committed
Enable Dependabot version updates for actions
This enables grouped Dependabot version updates, for GitHub Actions only (not for Rust dependncies). Currently some actions in use in this project's workflows specify old major versions that are not currently maintained with bug fixes and that use old unsupported Node.js version. This includes an old version of `actions/checkout` (using `v3`, where `v4` is needed to ensure a supported version of Node.js is used) and SARIF-related actions. On the latter, see: https://github.blog/changelog/2025-01-10-code-scanning-codeql-action-v2-is-now-deprecated/ Under this new configuration, Dependabot will open a single pull request to upgrade all actions that have available updates, followed by pull request monthly or less for this in the future.
1 parent 74e3475 commit ed59e97

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/dependabot.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: '/'
5+
schedule:
6+
interval: monthly
7+
groups:
8+
github-actions:
9+
patterns: ['*']

0 commit comments

Comments
 (0)