@@ -209,7 +209,7 @@ jobs:
209
209
210
210
- name : Lookup Toolchain Cache
211
211
id : lookup_toolchain
212
- uses : actions/cache/restore@v4.2.0
212
+ uses : actions/cache/restore@v4.2.2
213
213
with :
214
214
path : ${{ github.workspace }}/mpv-winbuild-cmake/build${{ matrix.bit }}
215
215
key : toolchain-${{ inputs.compiler }}-build${{ matrix.bit }}-${{ env.cache_suffix }}
@@ -218,7 +218,7 @@ jobs:
218
218
lookup-only : true
219
219
- name : Lookup Build Cache
220
220
id : lookup_build
221
- uses : actions/cache/restore@v4.2.0
221
+ uses : actions/cache/restore@v4.2.2
222
222
with :
223
223
path : ${{ github.workspace }}/mpv-winbuild-cmake/build${{ matrix.bit }}
224
224
key : ${{ inputs.compiler }}-build${{ matrix.bit }}-${{ env.cache_suffix }}
@@ -262,37 +262,37 @@ jobs:
262
262
263
263
- name : Restore clang sysroot cache
264
264
if : ${{ inputs.compiler =='clang' }}
265
- uses : actions/cache/restore@v4.2.0
265
+ uses : actions/cache/restore@v4.2.2
266
266
with :
267
267
path : ${{ github.workspace }}/mpv-winbuild-cmake/clang_root
268
268
key : ${{ matrix.bit }}-clang_root-${{ env.key_suffix }}
269
269
restore-keys : |
270
270
${{ matrix.bit }}-clang_root-${{ env.restore_suffix }}
271
271
272
272
- name : Restore Rust Cache
273
- uses : actions/cache/restore@v4.2.0
273
+ uses : actions/cache/restore@v4.2.2
274
274
id : cache_rust
275
275
with :
276
276
path : ${{ github.workspace }}/mpv-winbuild-cmake/install_rustup
277
277
key : rust-${{ env.key_suffix }}
278
278
restore-keys : |
279
279
rust-${{ env.restore_suffix }}
280
280
- name : Restore Source Cache
281
- uses : actions/cache/restore@v4.2.0
281
+ uses : actions/cache/restore@v4.2.2
282
282
with :
283
283
path : ${{ github.workspace }}/mpv-winbuild-cmake/src_packages
284
284
key : source-${{ env.key_suffix }}
285
285
restore-keys : |
286
286
source-${{ env.restore_suffix }}
287
287
- name : Restore Toolchain Cache
288
288
if : ${{ env.toolchain_restore_key != '' }}
289
- uses : actions/cache/restore@v4.2.0
289
+ uses : actions/cache/restore@v4.2.2
290
290
with :
291
291
path : ${{ github.workspace }}/mpv-winbuild-cmake/build${{ matrix.bit }}
292
292
key : ${{ env.toolchain_restore_key }}
293
293
- name : Restore Build Cache
294
294
if : ${{ inputs.needclean != true && env.build_restore_key != '' }}
295
- uses : actions/cache/restore@v4.2.0
295
+ uses : actions/cache/restore@v4.2.2
296
296
with :
297
297
path : ${{ github.workspace }}/mpv-winbuild-cmake/build${{ matrix.bit }}
298
298
key : ${{ env.build_restore_key }}
@@ -472,25 +472,25 @@ jobs:
472
472
473
473
- name : Save clang sysroot cache
474
474
if : ${{ inputs.compiler =='clang' && inputs.no_save_cache != true && matrix.lgpl != true }}
475
- uses : actions/cache/save@v4.2.0
475
+ uses : actions/cache/save@v4.2.2
476
476
with :
477
477
path : ${{ github.workspace }}/mpv-winbuild-cmake/clang_root
478
478
key : ${{ matrix.bit }}-clang_root-${{ env.cache_suffix }}
479
479
- name : Save Sources Cache
480
480
if : ${{ inputs.no_save_cache != true && matrix.lgpl != true }}
481
- uses : actions/cache/save@v4.2.0
481
+ uses : actions/cache/save@v4.2.2
482
482
with :
483
483
path : ${{ github.workspace }}/mpv-winbuild-cmake/src_packages
484
484
key : source-${{ env.cache_suffix }}
485
485
- name : Save Rust Cache
486
486
if : ${{ inputs.no_save_cache != true && matrix.lgpl != true }}
487
- uses : actions/cache/save@v4.2.0
487
+ uses : actions/cache/save@v4.2.2
488
488
with :
489
489
path : ${{ github.workspace }}/mpv-winbuild-cmake/install_rustup
490
490
key : rust-${{ env.cache_suffix }}
491
491
- name : Save Build Cache
492
492
if : ${{ inputs.no_save_cache != true && matrix.lgpl != true }}
493
- uses : actions/cache/save@v4.2.0
493
+ uses : actions/cache/save@v4.2.2
494
494
with :
495
495
path : ${{ github.workspace }}/mpv-winbuild-cmake/build${{ matrix.bit }}
496
496
key : ${{ env.build_save_key }}
0 commit comments