Skip to content

Commit 8e2af4e

Browse files
committed
fix
1 parent 9be9f81 commit 8e2af4e

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/renovate.json5

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
],
77
ignorePresets: [
88
':ignoreModulesAndTests', // needed to keep maven-extension test pom files up-to-date
9+
'workarounds:javaLTSVersions', // Allow all Java major versions, not just LTS
910
],
1011
prHourlyLimit: 5, // we have a large number of parallel runners
1112
labels: [
@@ -170,11 +171,22 @@
170171
customType: 'regex',
171172
datasourceTemplate: 'npm',
172173
managerFilePatterns: [
173-
'/^.github/workflows//',
174+
'.github/workflows/**'
174175
],
175176
matchStrings: [
176177
'npx (?<depName>[^@]+)@(?<currentValue>[^\\s]+)',
177178
],
178179
},
180+
{
181+
customType: 'regex',
182+
datasourceTemplate: 'java-version',
183+
managerFilePatterns: [
184+
'.github/workflows/**'
185+
],
186+
matchStrings: [
187+
'(?<currentValue>\\d+) # renovate: datasource=java-version',
188+
],
189+
depNameTemplate: 'java',
190+
},
179191
],
180192
}

0 commit comments

Comments
 (0)