Skip to content

Commit fcbd61c

Browse files
authored
Create separate Dependabot PRs for JUnit 6 (#3088)
To avoid incompatibilities with native-maven-plugin.
1 parent 9d5d6a8 commit fcbd61c

1 file changed

Lines changed: 9 additions & 4 deletions

File tree

.github/dependabot.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,13 @@ updates:
1010
# Name is used for branch name and pull request title
1111
maven:
1212
patterns:
13-
# Create a single pull request for all dependencies and plugins
14-
- "*"
13+
# Create a single pull request for all dependencies and plugins
14+
- "*"
15+
exclude-patterns:
16+
# Exclude JUnit 6 from the group (that is, create a separate PR for it)
17+
# It is currently only used by `/test-graal-native-image` and frequently causes incompatibilities
18+
# there with `org.graalvm.buildtools:native-maven-plugin`, causing the complete Dependabot PR to fail
19+
- "org.junit:junit-bom"
1520

1621
- package-ecosystem: "github-actions"
1722
directory: "/"
@@ -23,5 +28,5 @@ updates:
2328
# Name is used for branch name and pull request title
2429
github-actions:
2530
patterns:
26-
# Create a single pull request for all actions
27-
- "*"
31+
# Create a single pull request for all actions
32+
- "*"

0 commit comments

Comments
 (0)