ci: run dependabot on GitHub Actions

Dependabot can find GHA workflows and actions in standard locations:
- /.github/workflows/*
- /action.yml

But non-standard locations like `.github/actions/**` must be specified
explicitly.
This commit is contained in:
Matt Sturgeon
2026-06-07 13:30:13 +00:00
committed by Gaétan Lepage
parent a509dd2645
commit 4b98b6ae9c
+4 -1
View File
@@ -9,7 +9,10 @@ updates:
- package-ecosystem: "github-actions"
# Workflow files stored in the default location of `.github/workflows`
# You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.
directory: "/"
# You _do_ need to specify any non-workflow directories, such as actions, though.
directories:
- /
- /.github/actions/*
schedule:
interval: "weekly"
commit-message: