Skip to content
This repository was archived by the owner on Jun 18, 2026. It is now read-only.

Commit 2f82194

Browse files
deps: add Maven ecosystem to Dependabot config
Add weekly Maven dependency scanning with grouping for minor/patch updates. This complements the existing GitHub Actions ecosystem monitoring.
1 parent b31c75d commit 2f82194

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,21 @@ updates:
1717
update-types:
1818
- "minor"
1919
- "patch"
20+
21+
# Keep Maven dependencies up to date
22+
- package-ecosystem: "maven"
23+
directory: "/"
24+
schedule:
25+
interval: "weekly"
26+
day: "wednesday"
27+
labels:
28+
- "dependencies"
29+
- "java"
30+
commit-message:
31+
prefix: "deps"
32+
groups:
33+
maven-minor:
34+
update-types:
35+
- "minor"
36+
- "patch"
37+
open-pull-requests-limit: 10

0 commit comments

Comments
 (0)