Skip to content

Commit 8410499

Browse files
committed
Enable Dependabot for github-actions and pip ecosystems
OSSF Scorecard's dependency-update-tool check was scoring 0. The project has no runtime dependencies, but the action versions in .github/workflows and the test-only deps in requirements.txt are both worth keeping fresh so we don't ship CI on stale, vulnerable tooling. Weekly cadence on both ecosystems. Minor and patch bumps are grouped into a single PR per ecosystem to keep the noise bounded; major bumps still arrive as standalone PRs so the breaking-change review is honest.
1 parent 1a5c33b commit 8410499

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
open-pull-requests-limit: 5
8+
groups:
9+
actions-minor-patch:
10+
update-types:
11+
- "minor"
12+
- "patch"
13+
14+
- package-ecosystem: "pip"
15+
directory: "/"
16+
schedule:
17+
interval: "weekly"
18+
open-pull-requests-limit: 5
19+
groups:
20+
pip-minor-patch:
21+
update-types:
22+
- "minor"
23+
- "patch"

0 commit comments

Comments
 (0)