@@ -127,7 +127,7 @@ jobs:
127127 - name : Setup Gradle
128128 uses : ./.github/actions/setup-gradle
129129 with :
130- java-version : 24
130+ java-version : 17
131131 gradle-cache-read-only : ${{ !inputs.is-trunk }}
132132 gradle-cache-write-only : ${{ inputs.is-trunk }}
133133 develocity-access-key : ${{ secrets.DEVELOCITY_ACCESS_KEY }}
@@ -181,7 +181,7 @@ jobs:
181181 fail-fast : false
182182 matrix :
183183 # If we change these, make sure to adjust ci-complete.yml
184- java : [ 24 , 17 ]
184+ java : [ 25 , 17 ]
185185 run-flaky : [ true, false ]
186186 run-new : [ true, false ]
187187 exclude :
@@ -270,7 +270,7 @@ jobs:
270270 python .github/scripts/junit.py \
271271 --path build/junit-xml >> $GITHUB_STEP_SUMMARY
272272
273- # This job downloads all the JUnit XML files and thread dumps from the JDK 24 test runs.
273+ # This job downloads all the JUnit XML files and thread dumps from the JDK 25 test runs.
274274 # If any test job fails, we will not run this job. Also, if any thread dump artifacts
275275 # are present, this means there was a timeout in the tests and so we will not proceed
276276 # with catalog creation.
@@ -288,7 +288,7 @@ jobs:
288288 - name : Download Thread Dumps
289289 uses : actions/download-artifact@v5
290290 with :
291- pattern : junit-thread-dumps-24 -*
291+ pattern : junit-thread-dumps-25 -*
292292 path : thread-dumps
293293 merge-multiple : true
294294 - name : Check For Thread Dump
@@ -302,7 +302,7 @@ jobs:
302302 - name : Download JUnit XMLs
303303 uses : actions/download-artifact@v5
304304 with :
305- pattern : junit-xml-24 -* # Only look at JDK 24 tests for the test catalog
305+ pattern : junit-xml-25 -* # Only look at JDK 25 tests for the test catalog
306306 path : junit-xml
307307 merge-multiple : true
308308 - name : Collate Test Catalog
0 commit comments