Skip to content

Commit da84fb0

Browse files
dependabot[bot]zhongfly
authored andcommitted
build(deps): bump actions/cache from 4.2.0 to 4.2.2
Bumps [actions/cache](https://github.com/actions/cache) from 4.2.0 to 4.2.2. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4.2.0...v4.2.2) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 607b3e0 commit da84fb0

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

.github/workflows/llvm.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
extra_option: "-DLLVM_ENABLE_PGO=USE -DLLVM_ENABLE_LTO=Thin -DLLVM_PROFDATA_FILE=$buildroot/llvm.profdata"
117117

118118
- name: Save llvm cache
119-
uses: actions/cache/save@v4.2.0
119+
uses: actions/cache/save@v4.2.2
120120
if: ${{ !inputs.no_save_cache }}
121121
with:
122122
path: |

.github/workflows/mpv.yml

+11-11
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ jobs:
209209
210210
- name: Lookup Toolchain Cache
211211
id: lookup_toolchain
212-
uses: actions/cache/restore@v4.2.0
212+
uses: actions/cache/restore@v4.2.2
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@v4.2.0
221+
uses: actions/cache/restore@v4.2.2
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@v4.2.0
265+
uses: actions/cache/restore@v4.2.2
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@v4.2.0
273+
uses: actions/cache/restore@v4.2.2
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@v4.2.0
281+
uses: actions/cache/restore@v4.2.2
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@v4.2.0
289+
uses: actions/cache/restore@v4.2.2
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@v4.2.0
295+
uses: actions/cache/restore@v4.2.2
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@v4.2.0
475+
uses: actions/cache/save@v4.2.2
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@v4.2.0
481+
uses: actions/cache/save@v4.2.2
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@v4.2.0
487+
uses: actions/cache/save@v4.2.2
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@v4.2.0
493+
uses: actions/cache/save@v4.2.2
494494
with:
495495
path: ${{ github.workspace }}/mpv-winbuild-cmake/build${{ matrix.bit }}
496496
key: ${{ env.build_save_key }}

.github/workflows/toolchain.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122

123123
- name: Restore llvm cache
124124
if: ${{ inputs.compiler =='clang' }}
125-
uses: actions/cache/restore@v4.2.0
125+
uses: actions/cache/restore@v4.2.2
126126
with:
127127
fail-on-cache-miss: true
128128
path: |
@@ -149,14 +149,14 @@ jobs:
149149

150150
- name: Save Toolchain Cache
151151
if: ${{ inputs.no_save_cache != true }}
152-
uses: actions/cache/save@v4.2.0
152+
uses: actions/cache/save@v4.2.2
153153
with:
154154
path: ${{ github.workspace }}/mpv-winbuild-cmake/build${{ matrix.bit }}
155155
key: toolchain-${{ inputs.compiler }}-build${{ matrix.bit }}-${{ needs.params.outputs.cache_suffix }}
156156

157157
- name: Save clang_root cache
158158
if: ${{ inputs.compiler =='clang' && inputs.no_save_cache != true }}
159-
uses: actions/cache/save@v4.2.0
159+
uses: actions/cache/save@v4.2.2
160160
with:
161161
path: ${{ github.workspace }}/mpv-winbuild-cmake/clang_root
162162
key: ${{ matrix.bit }}-clang_root-${{ needs.params.outputs.cache_suffix }}
@@ -207,7 +207,7 @@ jobs:
207207

208208
- name: Save Rust Cache
209209
if: ${{ inputs.no_save_cache != true }}
210-
uses: actions/cache/save@v4.2.0
210+
uses: actions/cache/save@v4.2.2
211211
with:
212212
path: ${{ github.workspace }}/mpv-winbuild-cmake/install_rustup
213213
key: rust-${{ needs.params.outputs.cache_suffix }}

action/resave_cache/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ runs:
3939
steps:
4040
- name: Restore cache
4141
id: restore
42-
uses: actions/cache/restore@v4.2.0
42+
uses: actions/cache/restore@v4.2.2
4343
with:
4444
path: ${{ inputs.path }}
4545
key: ${{ inputs.key }}
@@ -68,7 +68,7 @@ runs:
6868
6969
- name: Save cache
7070
if: ${{ steps.restore.outputs.cache-matched-key != '' && steps.delete.outputs.result == 'true' }}
71-
uses: actions/cache/save@v4.2.0
71+
uses: actions/cache/save@v4.2.2
7272
with:
7373
path: ${{ inputs.path }}
7474
key: ${{ steps.restore.outputs.cache-matched-key }}

0 commit comments

Comments
 (0)