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
10 changes: 5 additions & 5 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -377,11 +377,11 @@
datasourceTemplate: 'java-version',
managerFilePatterns: [
'.github/workflows/**',
'**/*.gradle.kts'
'**/*.gradle.kts',
],
matchStrings: [
'(?<currentValue>\\d+) # renovate: datasource=java-version',
'"(?<currentValue>\\d+)" // renovate: datasource=java-version',
'(?<currentValue>\\d+) # renovate\\(java-version\\)',
'"(?<currentValue>\\d+)" // renovate\\(java-version\\)',
],
depNameTemplate: 'java',
extractVersionTemplate: '^(?<version>\\d+)',
Expand All @@ -390,7 +390,7 @@
customType: 'regex',
datasourceTemplate: 'pypi',
managerFilePatterns: [
'/^.github/workflows//',
'.github/workflows/**',
],
matchStrings: [
'pip install (?<depName>[^=]+)==(?<currentValue>[^\\s]+)',
Expand All @@ -400,7 +400,7 @@
customType: 'regex',
datasourceTemplate: 'npm',
managerFilePatterns: [
'/^.github/workflows//',
'.github/workflows/**',
],
matchStrings: [
'npx (?<depName>[^@]+)@(?<currentValue>[^\\s]+)',
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ jobs:
- 11
- 17
- 21
- 25 # renovate: datasource=java-version
- 25 # renovate(java-version)
- 25-deny-unsafe
vm:
- hotspot
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-pr-smoke-test-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
build:
runs-on: ubuntu-latest
env:
LATEST_JAVA_VERSION: 25 # renovate: datasource=java-version
LATEST_JAVA_VERSION: 25 # renovate(java-version)
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-publish-smoke-test-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
contents: read
packages: write
env:
LATEST_JAVA_VERSION: 25 # renovate: datasource=java-version
LATEST_JAVA_VERSION: 25 # renovate(java-version)
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

Expand Down
Loading