Skip to content

Commit af50a17

Browse files
build(deps): bump actions/cache from 5.0.1 to 5.0.3
Bumps [actions/cache](https://github.com/actions/cache) from 5.0.1 to 5.0.3. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5.0.1...v5.0.3) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent f9bd576 commit af50a17

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

.github/workflows/llvm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
extra_option: "-DLLVM_ENABLE_PGO=USE -DLLVM_ENABLE_LTO=Thin -DLLVM_PROFDATA_FILE=$buildroot/llvm.profdata"
116116

117117
- name: Save llvm cache
118-
uses: actions/cache/save@v5.0.1
118+
uses: actions/cache/save@v5.0.3
119119
if: ${{ !inputs.no_save_cache }}
120120
with:
121121
path: |

.github/workflows/mpv.yml

Lines changed: 11 additions & 11 deletions
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@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 }}

.github/workflows/toolchain.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121

122122
- name: Restore llvm cache
123123
if: ${{ inputs.compiler =='clang' }}
124-
uses: actions/cache/restore@v5.0.1
124+
uses: actions/cache/restore@v5.0.3
125125
with:
126126
fail-on-cache-miss: true
127127
path: |
@@ -148,14 +148,14 @@ jobs:
148148

149149
- name: Save Toolchain Cache
150150
if: ${{ inputs.no_save_cache != true }}
151-
uses: actions/cache/save@v5.0.1
151+
uses: actions/cache/save@v5.0.3
152152
with:
153153
path: ${{ github.workspace }}/mpv-winbuild-cmake/build${{ matrix.bit }}
154154
key: toolchain-${{ inputs.compiler }}-build${{ matrix.bit }}-${{ needs.params.outputs.cache_suffix }}
155155

156156
- name: Save clang_root cache
157157
if: ${{ inputs.compiler =='clang' && inputs.no_save_cache != true }}
158-
uses: actions/cache/save@v5.0.1
158+
uses: actions/cache/save@v5.0.3
159159
with:
160160
path: ${{ github.workspace }}/mpv-winbuild-cmake/clang_root
161161
key: ${{ matrix.bit }}-clang_root-${{ needs.params.outputs.cache_suffix }}
@@ -206,7 +206,7 @@ jobs:
206206

207207
- name: Save Rust Cache
208208
if: ${{ inputs.no_save_cache != true }}
209-
uses: actions/cache/save@v5.0.1
209+
uses: actions/cache/save@v5.0.3
210210
with:
211211
path: ${{ github.workspace }}/mpv-winbuild-cmake/install_rustup
212212
key: rust-${{ needs.params.outputs.cache_suffix }}

0 commit comments

Comments
 (0)