Skip to content

Commit

Permalink
build(deps): bump actions/cache from 4.0.2 to 4.1.0
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 4.0.2 to 4.1.0.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v4.0.2...v4.1.0)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and zhongfly committed Oct 7, 2024
1 parent 70d699a commit 4e1a88c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/llvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
extra_option: "-DLLVM_ENABLE_PGO=USE -DLLVM_ENABLE_LTO=Thin -DLLVM_PROFDATA_FILE=$buildroot/llvm.profdata"

- name: Save llvm cache
uses: actions/cache/save@v4.0.2
uses: actions/cache/save@v4.1.0
if: ${{ !inputs.no_save_cache }}
with:
path: |
Expand Down
26 changes: 13 additions & 13 deletions .github/workflows/mpv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ jobs:
- name: Lookup Toolchain Cache
id: lookup_toolchain
uses: actions/cache/restore@v4.0.2
uses: actions/cache/restore@v4.1.0
with:
path: ${{ github.workspace }}/mpv-winbuild-cmake/build${{ matrix.bit }}
key: toolchain-${{ inputs.compiler }}-build${{ matrix.bit }}-${{ env.cache_suffix }}
Expand All @@ -211,7 +211,7 @@ jobs:
lookup-only: true
- name: Lookup Build Cache
id: lookup_build
uses: actions/cache/restore@v4.0.2
uses: actions/cache/restore@v4.1.0
with:
path: ${{ github.workspace }}/mpv-winbuild-cmake/build${{ matrix.bit }}
key: ${{ inputs.compiler }}-build${{ matrix.bit }}-${{ env.cache_suffix }}
Expand Down Expand Up @@ -255,7 +255,7 @@ jobs:
- name: Keep inital clang sysroot cache alive
if: ${{ inputs.compiler =='clang' && env.toolchain_version }}
uses: actions/cache/restore@v4.0.2
uses: actions/cache/restore@v4.1.0
with:
path: ${{ github.workspace }}/mpv-winbuild-cmake/clang_root
key: ${{ matrix.bit }}-clang_root-${{ env.toolchain_version }}
Expand All @@ -264,7 +264,7 @@ jobs:
lookup-only: true
- name: Keep llvm cache alive
if: ${{ inputs.compiler =='clang' }}
uses: actions/cache/restore@v4.0.2
uses: actions/cache/restore@v4.1.0
with:
path: mpv-winbuild-cmake/clang_root
key: llvm-${{ env.toolchain_version }}
Expand All @@ -273,37 +273,37 @@ jobs:
lookup-only: true
- name: Restore clang sysroot cache
if: ${{ inputs.compiler =='clang' }}
uses: actions/cache/restore@v4.0.2
uses: actions/cache/restore@v4.1.0
with:
path: ${{ github.workspace }}/mpv-winbuild-cmake/clang_root
key: ${{ matrix.bit }}-clang_root-${{ env.key_suffix }}
restore-keys: |
${{ matrix.bit }}-clang_root-${{ env.restore_suffix }}
- name: Restore Rust Cache
uses: actions/cache/restore@v4.0.2
uses: actions/cache/restore@v4.1.0
id: cache_rust
with:
path: ${{ github.workspace }}/mpv-winbuild-cmake/install_rustup
key: rust-${{ env.key_suffix }}
restore-keys: |
rust-${{ env.restore_suffix }}
- name: Restore Source Cache
uses: actions/cache/restore@v4.0.2
uses: actions/cache/restore@v4.1.0
with:
path: ${{ github.workspace }}/mpv-winbuild-cmake/src_packages
key: source-${{ env.key_suffix }}
restore-keys: |
source-${{ env.restore_suffix }}
- name: Restore Toolchain Cache
if: ${{ env.toolchain_restore_key != '' }}
uses: actions/cache/restore@v4.0.2
uses: actions/cache/restore@v4.1.0
with:
path: ${{ github.workspace }}/mpv-winbuild-cmake/build${{ matrix.bit }}
key: ${{ env.toolchain_restore_key }}
- name: Restore Build Cache
if: ${{ inputs.needclean != true && env.build_restore_key != '' }}
uses: actions/cache/restore@v4.0.2
uses: actions/cache/restore@v4.1.0
with:
path: ${{ github.workspace }}/mpv-winbuild-cmake/build${{ matrix.bit }}
key: ${{ env.build_restore_key }}
Expand Down Expand Up @@ -483,25 +483,25 @@ jobs:

- name: Save clang sysroot cache
if: ${{ inputs.compiler =='clang' && inputs.no_save_cache != true && matrix.lgpl != true }}
uses: actions/cache/save@v4.0.2
uses: actions/cache/save@v4.1.0
with:
path: ${{ github.workspace }}/mpv-winbuild-cmake/clang_root
key: ${{ matrix.bit }}-clang_root-${{ env.cache_suffix }}
- name: Save Sources Cache
if: ${{ inputs.no_save_cache != true && matrix.lgpl != true }}
uses: actions/cache/save@v4.0.2
uses: actions/cache/save@v4.1.0
with:
path: ${{ github.workspace }}/mpv-winbuild-cmake/src_packages
key: source-${{ env.cache_suffix }}
- name: Save Rust Cache
if: ${{ inputs.no_save_cache != true && matrix.lgpl != true }}
uses: actions/cache/save@v4.0.2
uses: actions/cache/save@v4.1.0
with:
path: ${{ github.workspace }}/mpv-winbuild-cmake/install_rustup
key: rust-${{ env.cache_suffix }}
- name: Save Build Cache
if: ${{ inputs.no_save_cache != true && matrix.lgpl != true }}
uses: actions/cache/save@v4.0.2
uses: actions/cache/save@v4.1.0
with:
path: ${{ github.workspace }}/mpv-winbuild-cmake/build${{ matrix.bit }}
key: ${{ env.build_save_key }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/toolchain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:

- name: Restore llvm cache
if: ${{ inputs.compiler =='clang' }}
uses: actions/cache/restore@v4.0.2
uses: actions/cache/restore@v4.1.0
with:
fail-on-cache-miss: true
path: |
Expand All @@ -149,14 +149,14 @@ jobs:

- name: Save Toolchain Cache
if: ${{ inputs.no_save_cache != true }}
uses: actions/cache/save@v4.0.2
uses: actions/cache/save@v4.1.0
with:
path: ${{ github.workspace }}/mpv-winbuild-cmake/build${{ matrix.bit }}
key: toolchain-${{ inputs.compiler }}-build${{ matrix.bit }}-${{ needs.params.outputs.cache_suffix }}

- name: Save clang_root cache
if: ${{ inputs.compiler =='clang' && inputs.no_save_cache != true }}
uses: actions/cache/save@v4.0.2
uses: actions/cache/save@v4.1.0
with:
path: ${{ github.workspace }}/mpv-winbuild-cmake/clang_root
key: ${{ matrix.bit }}-clang_root-${{ needs.params.outputs.cache_suffix }}
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:

- name: Save Rust Cache
if: ${{ inputs.no_save_cache != true }}
uses: actions/cache/save@v4.0.2
uses: actions/cache/save@v4.1.0
with:
path: ${{ github.workspace }}/mpv-winbuild-cmake/install_rustup
key: rust-${{ needs.params.outputs.cache_suffix }}
Expand Down

0 comments on commit 4e1a88c

Please sign in to comment.