We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46395d7 commit 49b362eCopy full SHA for 49b362e
1 file changed
.github/renovate.json5
@@ -2,14 +2,24 @@
2
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
"extends": [
4
"config:best-practices",
5
- "helpers:pinGitHubActionDigestsToSemver"
+ "helpers:pinGitHubActionDigestsToSemver",
6
],
7
"packageRules": [
8
{
9
// this is to reduce the number of renovate PRs by consolidating them into a weekly batch
10
"matchManagers": ["github-actions"],
11
"extends": ["schedule:weekly"],
12
"groupName": "github actions"
13
- }
+ },
14
+ {
15
+ // junit 6+ requires Java 17+
16
+ matchPackageNames: [
17
+ 'org.junit:**',
18
+ ],
19
+ matchUpdateTypes: [
20
+ 'major',
21
22
+ enabled: false,
23
24
]
25
}
0 commit comments