@@ -66,12 +66,12 @@ jobs:
6666 name : Load Test Catalog
6767 steps :
6868 - name : Checkout main
69- uses : actions/checkout@v4
69+ uses : actions/checkout@v5
7070 with :
7171 persist-credentials : false
7272
7373 - name : Checkout test-catalog
74- uses : actions/checkout@v4
74+ uses : actions/checkout@v5
7575 with :
7676 ref : ' test-catalog'
7777 persist-credentials : false
@@ -118,7 +118,7 @@ jobs:
118118 env :
119119 GITHUB_CONTEXT : ${{ toJson(github) }}
120120 - name : Checkout code
121- uses : actions/checkout@v4
121+ uses : actions/checkout@v5
122122 with :
123123 persist-credentials : false
124124 ref : ${{ github.sha }} # this is the default, just being explicit.
@@ -192,7 +192,7 @@ jobs:
192192 name : JUnit tests Java ${{ matrix.java }}${{ matrix.run-flaky == true && ' (flaky)' || '' }}${{ matrix.run-new == true && ' (new)' || '' }}
193193 steps :
194194 - name : Checkout code
195- uses : actions/checkout@v4
195+ uses : actions/checkout@v5
196196 with :
197197 persist-credentials : false
198198 ref : ${{ needs.configure.outputs.sha }}
@@ -210,7 +210,7 @@ jobs:
210210 # the overall workflow, so we'll continue here without a test catalog.
211211 - name : Load Test Catalog
212212 id : load-test-catalog
213- uses : actions/download-artifact@v4
213+ uses : actions/download-artifact@v5
214214 continue-on-error : true
215215 with :
216216 name : combined-test-catalog
@@ -282,11 +282,11 @@ jobs:
282282 uploaded-test-catalog : ${{ steps.archive-test-catalog.outcome == 'success' }}
283283 steps :
284284 - name : Checkout code
285- uses : actions/checkout@v4
285+ uses : actions/checkout@v5
286286 with :
287287 persist-credentials : false
288288 - name : Download Thread Dumps
289- uses : actions/download-artifact@v4
289+ uses : actions/download-artifact@v5
290290 with :
291291 pattern : junit-thread-dumps-24-*
292292 path : thread-dumps
@@ -300,7 +300,7 @@ jobs:
300300 exit 1;
301301 fi
302302 - name : Download JUnit XMLs
303- uses : actions/download-artifact@v4
303+ uses : actions/download-artifact@v5
304304 with :
305305 pattern : junit-xml-24-* # Only look at JDK 24 tests for the test catalog
306306 path : junit-xml
@@ -334,15 +334,15 @@ jobs:
334334 contents : write
335335 steps :
336336 - name : Checkout Test Catalog
337- uses : actions/checkout@v4
337+ uses : actions/checkout@v5
338338 with :
339339 persist-credentials : true # Needed to commit and push later
340340 ref : test-catalog
341341 - name : Reset Catalog
342342 run : |
343343 rm -rf test-catalog
344344 - name : Download Test Catalog
345- uses : actions/download-artifact@v4
345+ uses : actions/download-artifact@v5
346346 with :
347347 name : test-catalog
348348 path : test-catalog
0 commit comments