Sfoglia il codice sorgente

build(deps): bump actions/cache from 4 to 5

Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v4...v5)

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

Signed-off-by: dependabot[bot] <[email protected]>
dependabot[bot] 3 settimane fa
parent
commit
55e9d3db66
1 ha cambiato i file con 8 aggiunte e 8 eliminazioni
  1. 8 8
      .github/workflows/ci.yml

+ 8 - 8
.github/workflows/ci.yml

@@ -127,7 +127,7 @@ jobs:
 
     - name: Cache dependencies (Windows)
       if: runner.os == 'Windows'
-      uses: actions/cache@v4
+      uses: actions/cache@v5
       with:
         path: thirdparty
         key: ci-cmake-${{ runner.OS }}-thirdparty-v1.10.15-r1
@@ -144,7 +144,7 @@ jobs:
 
     - name: ccache (non-Windows)
       if: runner.os != 'Windows'
-      uses: actions/cache@v4
+      uses: actions/cache@v5
       with:
         path: ccache
         key: ci-cmake-ccache-${{ matrix.profile }}
@@ -513,7 +513,7 @@ jobs:
 
     - name: Restore Python build cache
       id: cache-emscripten-python-restore
-      uses: actions/cache/restore@v4
+      uses: actions/cache/restore@v5
       with:
         path: ~/python
         key: cache-emscripten-python-3.12.8
@@ -533,7 +533,7 @@ jobs:
     - name: Save Python build cache
       id: cache-emscripten-python-save
       if: steps.cache-emscripten-python-restore.outputs.cache-hit != 'true'
-      uses: actions/cache/save@v4
+      uses: actions/cache/save@v5
       with:
         path: ~/python
         key: ${{ steps.cache-emscripten-python-restore.outputs.cache-primary-key }}
@@ -604,7 +604,7 @@ jobs:
 
     - name: Restore Python build cache
       id: cache-android-python-restore
-      uses: actions/cache/restore@v4
+      uses: actions/cache/restore@v5
       with:
         path: ~/python-prefix
         key: cache-android-python-3.13.9-${{ matrix.android-abi }}-ndk${{ matrix.ndk-version }}
@@ -623,14 +623,14 @@ jobs:
     - name: Save Python build cache
       id: cache-android-python-save
       if: steps.cache-android-python-restore.outputs.cache-hit != 'true'
-      uses: actions/cache/save@v4
+      uses: actions/cache/save@v5
       with:
         path: ~/python-prefix
         key: ${{ steps.cache-android-python-restore.outputs.cache-primary-key }}
 
     - name: Restore thirdparty build cache
       id: cache-android-thirdparty-restore
-      uses: actions/cache/restore@v4
+      uses: actions/cache/restore@v5
       with:
         path: ./thirdparty
         key: cache-android-thirdparty-935c80380ca171e08587c570e9dad678d29db3c8-${{ matrix.android-abi }}-ndk${{ matrix.ndk-version }}
@@ -662,7 +662,7 @@ jobs:
     - name: Save thirdparty build cache
       id: cache-android-thirdparty-save
       if: steps.cache-android-thirdparty-restore.outputs.cache-hit != 'true'
-      uses: actions/cache/save@v4
+      uses: actions/cache/save@v5
       with:
         path: ./thirdparty
         key: ${{ steps.cache-android-thirdparty-restore.outputs.cache-primary-key }}