File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 6
6
] ,
7
7
ignorePresets : [
8
8
':ignoreModulesAndTests' , // needed to keep maven-extension test pom files up-to-date
9
+ 'workarounds:javaLTSVersions' , // Allow all Java major versions, not just LTS
9
10
] ,
10
11
prHourlyLimit : 5 , // we have a large number of parallel runners
11
12
labels : [
170
171
customType : 'regex' ,
171
172
datasourceTemplate : 'npm' ,
172
173
managerFilePatterns : [
173
- '/^ .github/workflows//' ,
174
+ '.github/workflows/**'
174
175
] ,
175
176
matchStrings : [
176
177
'npx (?<depName>[^@]+)@(?<currentValue>[^\\s]+)' ,
177
178
] ,
178
179
} ,
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
+ } ,
179
191
] ,
180
192
}
Original file line number Diff line number Diff line change 54
54
- 11
55
55
- 17
56
56
- 21
57
- - 23
57
+ - 23 # renovate: datasource=java-version
58
58
# macos-latest drops support for java 8 temurin. Run java 8 on macos-13. Run java 11, 17, 21 on macos-latest.
59
59
exclude :
60
60
- os : macos-latest
66
66
- os : macos-13
67
67
test-java-version : 21
68
68
- os : macos-13
69
- test-java-version : 23
69
+ test-java-version : 23 # renovate: datasource=java-version
70
70
steps :
71
71
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
72
72
You can’t perform that action at this time.
0 commit comments