Skip to content

Commit f0d4f3a

Browse files
committed
Java 25 for CI builds
1 parent 3d1dc3b commit f0d4f3a

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/ci-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
2626
with:
2727
distribution: 'temurin'
28-
java-version: '21'
28+
java-version: '25'
2929

3030
- name: Generate cache key
3131
id: cache-key

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
build:
3434
permissions:
3535
contents: read
36-
name: OpenJDK 21 - ${{matrix.rdbms}}
36+
name: OpenJDK 25 - ${{matrix.rdbms}}
3737
runs-on: ubuntu-latest
3838
strategy:
3939
fail-fast: false
@@ -63,11 +63,11 @@ jobs:
6363
env:
6464
RDBMS: ${{ matrix.rdbms }}
6565
run: ci/database-start.sh
66-
- name: Set up Java 21
66+
- name: Set up Java 25
6767
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
6868
with:
6969
distribution: 'temurin'
70-
java-version: '21'
70+
java-version: '25'
7171

7272
- name: Generate cache key
7373
id: cache-key
@@ -270,11 +270,11 @@ jobs:
270270
persist-credentials: false
271271
- name: Reclaim disk space and sanitize user home
272272
run: .github/ci-prerequisites-atlas.sh
273-
- name: Set up Java 21
273+
- name: Set up Java 25
274274
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
275275
with:
276276
distribution: 'temurin'
277-
java-version: '21'
277+
java-version: '25'
278278

279279
- name: Generate cache key
280280
id: cache-key

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
4141
with:
4242
distribution: 'temurin'
43-
java-version: '21'
43+
java-version: '25'
4444

4545
- name: Checkout repository
4646
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

ci/jpa-3.2-tck.Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ else {
2222
pipeline {
2323
agent none
2424
tools {
25-
jdk 'OpenJDK 21 Latest'
25+
jdk 'OpenJDK 25 Latest'
2626
}
2727
options {
2828
rateLimitBuilds(throttle: [count: throttleCount, durationName: 'day', userBoost: true])
2929
buildDiscarder(logRotator(numToKeepStr: '3', artifactNumToKeepStr: '3'))
3030
disableConcurrentBuilds(abortPrevious: true)
3131
}
3232
parameters {
33-
choice(name: 'IMAGE_JDK', choices: ['jdk17', 'jdk21'], description: 'The JDK base image version to use for the TCK image.')
33+
choice(name: 'IMAGE_JDK', choices: ['jdk17', 'jdk25'], description: 'The JDK base image version to use for the TCK image.')
3434
string(name: 'TCK_VERSION', defaultValue: '3.2.0', description: 'The version of the Jakarta JPA TCK i.e. `2.2.0` or `3.0.1`')
3535
string(name: 'TCK_SHA', defaultValue: '', description: 'The SHA256 of the Jakarta JPA TCK that is distributed under https://download.eclipse.org/jakartaee/persistence/3.1/jakarta-persistence-tck-${TCK_VERSION}.zip.sha256')
3636
string(name: 'TCK_URL', defaultValue: 'https://www.eclipse.org/downloads/download.php?file=/ee4j/jakartaee-tck/jakartaee11/staged/eftl/jakarta-persistence-tck-3.2.0.zip&mirror_id=1', description: 'The URL from which to download the TCK ZIP file. Only needed for testing staged builds. Ensure the TCK_VERSION variable matches the ZIP file name suffix.')

ci/release/Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ pipeline {
7070
cron('0 0 * * 0')
7171
}
7272
tools {
73-
jdk 'OpenJDK 21 Latest'
73+
jdk 'OpenJDK 25 Latest'
7474
}
7575
options {
7676
buildDiscarder logRotator(daysToKeepStr: '30', numToKeepStr: '10')

ci/snapshot-publish.Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pipeline {
2323
label 'Release'
2424
}
2525
tools {
26-
jdk 'OpenJDK 21 Latest'
26+
jdk 'OpenJDK 25 Latest'
2727
}
2828
options {
2929
rateLimitBuilds(throttle: [count: 1, durationName: 'hour', userBoost: true])

0 commit comments

Comments
 (0)