diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 3c185fd..b12d020 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -2,7 +2,7 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "config:best-practices", - "helpers:pinGitHubActionDigestsToSemver" + "helpers:pinGitHubActionDigestsToSemver", ], "packageRules": [ { @@ -10,6 +10,16 @@ "matchManagers": ["github-actions"], "extends": ["schedule:weekly"], "groupName": "github actions" - } + }, + { + // junit 6+ requires Java 17+ + matchPackageNames: [ + 'org.junit:**', + ], + matchUpdateTypes: [ + 'major', + ], + enabled: false, + }, ] }