-
Notifications
You must be signed in to change notification settings - Fork 6
/
renovate.json
116 lines (116 loc) · 2.83 KB
/
renovate.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"helpers:pinGitHubActionDigests",
"config:recommended"
],
"ignorePresets": [
":ignoreModulesAndTests"
],
"ignorePaths": [
"**/node_modules/**",
"**/bower_components/**",
"**/vendor/**",
"**/examples/**",
"**/__tests__/**",
"**/tests/**",
"**/__fixtures__/**"
],
"forkProcessing": "enabled",
"pinDigests": true,
"platformAutomerge": true,
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"\\.yml$"
],
"matchStrings": [
"SARIF_CONVERTER_VERSION *: *\"(?<currentValue>.+?)\""
],
"depNameTemplate": "ignis-build/sarif-converter",
"extractVersionTemplate": "^v?(?<version>.*)$",
"datasourceTemplate": "github-releases"
},
{
"customType": "regex",
"fileMatch": [
"\\.yml$"
],
"matchStrings": [
"SCAP_SECURITY_GUIDE_VERSION *: *\"(?<currentValue>.+?)\""
],
"depNameTemplate": "ComplianceAsCode/content",
"datasourceTemplate": "github-releases"
},
{
"customType": "regex",
"fileMatch": [
"\\.yml$"
],
"matchStrings": [
"MICROSOFT_SARIF_MULTITOOL_VERSION *: *\"(?<currentValue>.+?)\""
],
"depNameTemplate": "@microsoft/sarif-multitool",
"datasourceTemplate": "npm"
},
{
"customType": "regex",
"fileMatch": [
"\\.yml$"
],
"matchStrings": [
"MITRE_SAF_VERSION *: *\"(?<currentValue>.+?)\""
],
"depNameTemplate": "@mitre/saf",
"datasourceTemplate": "npm"
},
{
"customType": "regex",
"description": "Update docker references in build.gradle.kts",
"fileMatch": [
"^build.gradle.kts$"
],
"matchStrings": [
"\"(?<depName>(?:gcr\\.io|docker\\.io)\\/[^:]+?):(?<currentValue>[^@]+)(?:@(?<currentDigest>sha256:[a-f0-9]+))?\""
],
"datasourceTemplate": "docker",
"versioningTemplate": "docker"
},
{
"customType": "regex",
"description": "Update docker references in Java files",
"fileMatch": [
"\\.java$"
],
"matchStrings": [
"\"(?<depName>(?:gcr\\.io|docker\\.io)\\/[^:]+?):(?<currentValue>[^@]+)(?:@(?<currentDigest>sha256:[a-f0-9]+))?\""
],
"datasourceTemplate": "docker",
"versioningTemplate": "docker"
},
{
"customType": "regex",
"fileMatch": [
"^build.gradle.kts$"
],
"matchStrings": [
"nodeVersion *= *\"(?<currentValue>.+?)\";?\n?"
],
"depNameTemplate": "node",
"datasourceTemplate": "docker"
}
],
"packageRules": [
{
"matchUpdateTypes": [
"major",
"minor",
"patch",
"pin",
"digest"
],
"automerge": true
}
]
}