Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,18 @@
},
],
customManagers: [
{
customType: 'regex',
datasourceTemplate: 'java-version',
managerFilePatterns: [
'.github/workflows/**'
],
matchStrings: [
'(?<currentValue>\\d+) # renovate: datasource=java-version',
],
depNameTemplate: 'java',
extractVersionTemplate: '^(?<version>\\d+)',
},
{
customType: 'regex',
datasourceTemplate: 'pypi',
Expand Down
10 changes: 2 additions & 8 deletions .github/workflows/build-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,7 @@ jobs:
- 11
- 17
- 21
- 23
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we shouldn't have been testing on 23 anymore anyways since not LTS and not latest

- 24
- 25-ea
- 24 # renovate: datasource=java-version
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

intentionally setting it to 24 to verify Renovate update works right away

vm:
- hotspot
- openj9
Expand All @@ -254,11 +252,7 @@ jobs:
- true
exclude:
- vm: ${{ inputs.skip-openj9-tests && 'openj9' || '' }}
- test-java-version: 23
vm: hotspot
- test-java-version: 24
vm: openj9
- test-java-version: 25-ea
- test-java-version: 24 # renovate: datasource=java-version
vm: openj9
fail-fast: false
steps:
Expand Down
Loading