@@ -118,7 +118,7 @@ jobs:
118118 image : nvidia/cuda:12.8.1-cudnn-devel-ubuntu24.04
119119
120120 steps :
121- - uses : actions/checkout@v4
121+ - uses : actions/checkout@v5
122122
123123 - name : Bootstrap cuDNN CI container
124124 uses : ./.github/actions/bootstrap-cudnn-ci
@@ -188,7 +188,7 @@ jobs:
188188
189189 - name : Save uv download cache
190190 if : steps.setup-uv-env.outputs.uv_cache_hit != 'true'
191- uses : actions/cache/save@v4
191+ uses : actions/cache/save@v5
192192 with :
193193 path : ~/.cache/uv
194194 key : ${{ env.UV_CACHE_KEY_PREFIX }}-latest
@@ -229,7 +229,7 @@ jobs:
229229 image : nvidia/cuda:12.8.1-cudnn-devel-ubuntu24.04
230230
231231 steps :
232- - uses : actions/checkout@v4
232+ - uses : actions/checkout@v5
233233
234234 - name : Bootstrap cuDNN CI container
235235 uses : ./.github/actions/bootstrap-cudnn-ci
@@ -255,7 +255,7 @@ jobs:
255255 uv run --no-sync python -m pytest --testmon --ignore-glob="*docs*" --ignore-glob="*examples*"
256256
257257 - name : Save testmon database to cache
258- uses : actions/cache/save@v4
258+ uses : actions/cache/save@v5
259259 with :
260260 path : |
261261 .testmondata
@@ -272,7 +272,7 @@ jobs:
272272 image : nvidia/cuda:12.8.1-cudnn-devel-ubuntu24.04
273273
274274 steps :
275- - uses : actions/checkout@v4
275+ - uses : actions/checkout@v5
276276
277277 - name : Bootstrap cuDNN CI container
278278 uses : ./.github/actions/bootstrap-cudnn-ci
@@ -311,7 +311,7 @@ jobs:
311311 path : coverage-doctest-report.xml
312312
313313 - name : Save coverage files to cache
314- uses : actions/cache/save@v4
314+ uses : actions/cache/save@v5
315315 with :
316316 path : .coverage*
317317 key : ${{ env.COVERAGE_CACHE_KEY_PREFIX }}-${{ hashFiles('uv.lock', 'pyproject.toml') }}
@@ -348,23 +348,23 @@ jobs:
348348 runs-on : ubuntu-latest
349349
350350 steps :
351- - uses : actions/checkout@v4
351+ - uses : actions/checkout@v5
352352
353353 - name : Download JUnit artifacts
354354 uses : actions/download-artifact@v4
355355 with :
356356 pattern : junit-*
357357
358358 - name : Core test report
359- uses : dorny/test-reporter@v2
359+ uses : dorny/test-reporter@v3
360360 with :
361361 name : Core Test Results
362362 path : junit-coverage-core/coverage-core-report.xml
363363 reporter : java-junit
364364 fail-on-error : ' false'
365365
366366 - name : Doctest report
367- uses : dorny/test-reporter@v2
367+ uses : dorny/test-reporter@v3
368368 with :
369369 name : Doctest Results
370370 path : junit-coverage-doctest/coverage-doctest-report.xml
0 commit comments