Skip to content

Commit 3073f2c

Browse files
committed
reduce and split up dependency update check
1 parent 7d4c2b0 commit 3073f2c

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

.github/dependabot.yml

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,27 @@ updates:
33
- package-ecosystem: "maven"
44
directory: "/"
55
schedule:
6-
interval: "weekly"
6+
interval: "monthly"
77
day: "monday"
88
time: "06:00"
9-
timezone: "UTC"
9+
timezone: "Etc/UTC"
1010
groups:
11-
maven-dependencies:
11+
java-test-dependencies:
12+
patterns:
13+
- "org.junit.jupiter:*"
14+
maven-build-plugins:
15+
patterns:
16+
- "org.apache.maven.plugins:*"
17+
- "org.owasp:dependency-check-maven"
18+
- "org.sonatype.plugins:nexus-staging-maven-plugin"
19+
java-production-dependencies:
1220
patterns:
1321
- "*"
22+
exclude-patterns:
23+
- "org.junit.jupiter:*"
24+
- "org.apache.maven.plugins:*"
25+
- "org.owasp:dependency-check-maven"
26+
- "org.sonatype.plugins:nexus-staging-maven-plugin"
1427

1528
- package-ecosystem: "github-actions"
1629
directory: "/" # even for `.github/workflows`

0 commit comments

Comments
 (0)