Skip to content

Commit 8fc9b14

Browse files
committed
add missing rennovate items
1 parent 3c92762 commit 8fc9b14

File tree

1 file changed

+71
-0
lines changed

1 file changed

+71
-0
lines changed

renovate.json

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,39 @@
7373
"LBC_VERSION=\"(?<currentValue>.*?)\""
7474
],
7575
"datasourceTemplate": "github-releases"
76+
},
77+
{
78+
"customType": "regex",
79+
"description": "Track Docker base images in Dockerfiles",
80+
"fileMatch": ["(^|/)Dockerfile[^/]*$"],
81+
"matchStrings": [
82+
"FROM\\s+(?<depName>bellsoft/liberica-openjre-debian):(?<currentValue>[^\\s]+)",
83+
"FROM\\s+(?<depName>eclipse-temurin):(?<currentValue>[^\\s]+)"
84+
],
85+
"datasourceTemplate": "docker"
86+
},
87+
{
88+
"customType": "regex",
89+
"description": "Track runtime versions in GitHub Actions",
90+
"fileMatch": ["^\\.github/workflows/[^/]+\\.ya?ml$"],
91+
"matchStrings": [
92+
"node-version:\\s*['\"]?(?<currentValue>[^'\"\\s]+)['\"]?",
93+
"python-version:\\s*['\"]?(?<currentValue>[^'\"\\s]+)['\"]?",
94+
"java-version:\\s*['\"]?(?<currentValue>[^'\"\\s]+)['\"]?"
95+
],
96+
"depNameTemplate": "node",
97+
"datasourceTemplate": "node-version"
98+
},
99+
{
100+
"customType": "regex",
101+
"description": "Track jeroenwillemsen/wrongsecrets images in K8s manifests",
102+
"fileMatch": ["(^|/)k8s/.+\\.ya?ml$", "(^|/)[^/]*\\.ya?ml$"],
103+
"matchStrings": [
104+
"image:\\s*['\"]?jeroenwillemsen/wrongsecrets:(?<currentValue>[^'\"\\s]+)['\"]?",
105+
"image:\\s*['\"]?jeroenwillemsen/wrongsecrets-challenge53:(?<currentValue>[^'\"\\s]+)['\"]?"
106+
],
107+
"depNameTemplate": "jeroenwillemsen/wrongsecrets",
108+
"datasourceTemplate": "docker"
76109
}
77110
],
78111
"packageRules": [
@@ -131,6 +164,44 @@
131164
"/google/",
132165
"/google-beta/"
133166
]
167+
},
168+
{
169+
"groupName": "GitHub Actions",
170+
"matchDatasources": ["github-tags"],
171+
"matchPackageNames": [
172+
"/^actions\//"
173+
]
174+
},
175+
{
176+
"groupName": "Docker Actions",
177+
"matchDatasources": ["github-tags"],
178+
"matchPackageNames": [
179+
"/^docker\//"
180+
]
181+
},
182+
{
183+
"groupName": "Java Runtime Images",
184+
"matchDatasources": ["docker"],
185+
"matchPackageNames": [
186+
"bellsoft/liberica-openjre-debian",
187+
"eclipse-temurin"
188+
]
189+
},
190+
{
191+
"groupName": "Runtime Versions",
192+
"schedule": ["before 6am on the first day of the month"],
193+
"matchPackageNames": [
194+
"node",
195+
"python",
196+
"java"
197+
]
198+
},
199+
{
200+
"groupName": "Frontend Dependencies",
201+
"matchPackageNames": [
202+
"/^playwright/",
203+
"/^@babel\//"
204+
]
134205
}
135206
]
136207
}

0 commit comments

Comments
 (0)