@@ -209,7 +209,7 @@ jobs:
209209
210210 - name : Lookup Toolchain Cache
211211 id : lookup_toolchain
212- uses : actions/cache/restore@v5.0.1
212+ uses : actions/cache/restore@v5.0.3
213213 with :
214214 path : ${{ github.workspace }}/mpv-winbuild-cmake/build${{ matrix.bit }}
215215 key : toolchain-${{ inputs.compiler }}-build${{ matrix.bit }}-${{ env.cache_suffix }}
@@ -218,7 +218,7 @@ jobs:
218218 lookup-only : true
219219 - name : Lookup Build Cache
220220 id : lookup_build
221- uses : actions/cache/restore@v5.0.1
221+ uses : actions/cache/restore@v5.0.3
222222 with :
223223 path : ${{ github.workspace }}/mpv-winbuild-cmake/build${{ matrix.bit }}
224224 key : ${{ inputs.compiler }}-build${{ matrix.bit }}-${{ env.cache_suffix }}
@@ -262,37 +262,37 @@ jobs:
262262
263263 - name : Restore clang sysroot cache
264264 if : ${{ inputs.compiler =='clang' }}
265- uses : actions/cache/restore@v5.0.1
265+ uses : actions/cache/restore@v5.0.3
266266 with :
267267 path : ${{ github.workspace }}/mpv-winbuild-cmake/clang_root
268268 key : ${{ matrix.bit }}-clang_root-${{ env.key_suffix }}
269269 restore-keys : |
270270 ${{ matrix.bit }}-clang_root-${{ env.restore_suffix }}
271271
272272 - name : Restore Rust Cache
273- uses : actions/cache/restore@v5.0.1
273+ uses : actions/cache/restore@v5.0.3
274274 id : cache_rust
275275 with :
276276 path : ${{ github.workspace }}/mpv-winbuild-cmake/install_rustup
277277 key : rust-${{ env.key_suffix }}
278278 restore-keys : |
279279 rust-${{ env.restore_suffix }}
280280 - name : Restore Source Cache
281- uses : actions/cache/restore@v5.0.1
281+ uses : actions/cache/restore@v5.0.3
282282 with :
283283 path : ${{ github.workspace }}/mpv-winbuild-cmake/src_packages
284284 key : source-${{ env.key_suffix }}
285285 restore-keys : |
286286 source-${{ env.restore_suffix }}
287287 - name : Restore Toolchain Cache
288288 if : ${{ env.toolchain_restore_key != '' }}
289- uses : actions/cache/restore@v5.0.1
289+ uses : actions/cache/restore@v5.0.3
290290 with :
291291 path : ${{ github.workspace }}/mpv-winbuild-cmake/build${{ matrix.bit }}
292292 key : ${{ env.toolchain_restore_key }}
293293 - name : Restore Build Cache
294294 if : ${{ inputs.needclean != true && env.build_restore_key != '' }}
295- uses : actions/cache/restore@v5.0.1
295+ uses : actions/cache/restore@v5.0.3
296296 with :
297297 path : ${{ github.workspace }}/mpv-winbuild-cmake/build${{ matrix.bit }}
298298 key : ${{ env.build_restore_key }}
@@ -472,25 +472,25 @@ jobs:
472472
473473 - name : Save clang sysroot cache
474474 if : ${{ inputs.compiler =='clang' && inputs.no_save_cache != true && matrix.lgpl != true }}
475- uses : actions/cache/save@v5.0.1
475+ uses : actions/cache/save@v5.0.3
476476 with :
477477 path : ${{ github.workspace }}/mpv-winbuild-cmake/clang_root
478478 key : ${{ matrix.bit }}-clang_root-${{ env.cache_suffix }}
479479 - name : Save Sources Cache
480480 if : ${{ inputs.no_save_cache != true && matrix.lgpl != true }}
481- uses : actions/cache/save@v5.0.1
481+ uses : actions/cache/save@v5.0.3
482482 with :
483483 path : ${{ github.workspace }}/mpv-winbuild-cmake/src_packages
484484 key : source-${{ env.cache_suffix }}
485485 - name : Save Rust Cache
486486 if : ${{ inputs.no_save_cache != true && matrix.lgpl != true }}
487- uses : actions/cache/save@v5.0.1
487+ uses : actions/cache/save@v5.0.3
488488 with :
489489 path : ${{ github.workspace }}/mpv-winbuild-cmake/install_rustup
490490 key : rust-${{ env.cache_suffix }}
491491 - name : Save Build Cache
492492 if : ${{ inputs.no_save_cache != true && matrix.lgpl != true }}
493- uses : actions/cache/save@v5.0.1
493+ uses : actions/cache/save@v5.0.3
494494 with :
495495 path : ${{ github.workspace }}/mpv-winbuild-cmake/build${{ matrix.bit }}
496496 key : ${{ env.build_save_key }}
0 commit comments