Skip to content

Commit 500fbec

Browse files
committed
Use Java 25 in CI by default
See gh-47283
1 parent 0c7e49e commit 500fbec

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/actions/build/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ inputs:
3535
java-version:
3636
description: 'Java version to compile and test with'
3737
required: false
38-
default: '24'
38+
default: '25'
3939
publish:
4040
description: 'Whether to publish artifacts ready for deployment to Artifactory'
4141
required: false

.github/actions/prepare-gradle-build/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ runs:
3939
distribution: ${{ inputs.java-early-access == 'true' && 'temurin' || (inputs.java-distribution || 'liberica') }}
4040
java-version: |
4141
${{ inputs.java-early-access == 'true' && format('{0}-ea', inputs.java-version) || inputs.java-version }}
42-
${{ inputs.java-toolchain == 'true' && '24' || '' }}
42+
${{ inputs.java-toolchain == 'true' && '25' || '' }}
4343
- name: Set Up Gradle With Read/Write Cache
4444
if: ${{ inputs.cache-read-only == 'false' }}
4545
uses: gradle/actions/setup-gradle@748248ddd2a24f49513d8f472f81c3a07d4d50e1 # v4.4.4

.github/workflows/build-and-deploy-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
uses: ./.github/actions/send-notification
4545
with:
4646
build-scan-url: ${{ steps.build-and-publish.outputs.build-scan-url }}
47-
run-name: ${{ format('{0} | Linux | Java 24', github.ref_name) }}
47+
run-name: ${{ format('{0} | Linux | Java 25', github.ref_name) }}
4848
status: ${{ job.status }}
4949
webhook-url: ${{ secrets.GOOGLE_CHAT_WEBHOOK_URL }}
5050
outputs:

0 commit comments

Comments
 (0)