Skip to content

Commit 49b362e

Browse files
authored
Update Renovate config to ignore JUnit 6 which requires Java 17+ (#128)
1 parent 46395d7 commit 49b362e

1 file changed

Lines changed: 12 additions & 2 deletions

File tree

.github/renovate.json5

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,24 @@
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": [
44
"config:best-practices",
5-
"helpers:pinGitHubActionDigestsToSemver"
5+
"helpers:pinGitHubActionDigestsToSemver",
66
],
77
"packageRules": [
88
{
99
// this is to reduce the number of renovate PRs by consolidating them into a weekly batch
1010
"matchManagers": ["github-actions"],
1111
"extends": ["schedule:weekly"],
1212
"groupName": "github actions"
13-
}
13+
},
14+
{
15+
// junit 6+ requires Java 17+
16+
matchPackageNames: [
17+
'org.junit:**',
18+
],
19+
matchUpdateTypes: [
20+
'major',
21+
],
22+
enabled: false,
23+
},
1424
]
1525
}

0 commit comments

Comments
 (0)