-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathrenovate.json5
37 lines (37 loc) · 1.04 KB
/
renovate.json5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>gooddata/.github",
":automergeDigest",
":automergeLinters",
":enableVulnerabilityAlertsWithLabel(security)",
"github>whitesource/merge-confidence:beta",
":semanticCommitTypeAll(chore)"
],
"ignorePresets": [":dependencyDashboard", "group:springSecurity", "workarounds:javaLTSVersions"],
"enabledManagers": ["gradle", "gradle-wrapper", "github-actions"],
"gradle": {
"enabled": true
},
"packageRules": [
{
"matchPackagePrefixes": ["io.gitlab.arturbosch.detekt"],
"groupName": "detekt"
},
{
"matchPackagePrefixes": ["org.jetbrains.kotlin."],
"groupName": "kotlin",
"allowedVersions": "<2.0.0"
},
{
"groupName": "spring security",
"matchPackagePrefixes": ["org.springframework.security"],
"allowedVersions": "<6.2.0"
},
{
"groupName": "spring boot",
"matchPackagePrefixes": ["org.springframework.boot"],
"allowedVersions": "<3.4.0"
},
]
}