From cf7c396176271462b9a29c62a1c3c6d8b723bd2b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 17:02:43 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build_appimage.yml | 2 +- .github/workflows/build_deb.yml | 2 +- .github/workflows/build_linux.yml | 2 +- .github/workflows/build_mac.yml | 2 +- .github/workflows/build_windows.yml | 6 +++--- .github/workflows/format.yml | 2 +- .github/workflows/release.yml | 4 ++-- .github/workflows/test_rust.yml | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build_appimage.yml b/.github/workflows/build_appimage.yml index 5537378b4..a2b5e33aa 100644 --- a/.github/workflows/build_appimage.yml +++ b/.github/workflows/build_appimage.yml @@ -93,7 +93,7 @@ jobs: - name: Cache GPAC build if: steps.should_build.outputs.should_build == 'true' id: cache-gpac - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: /usr/local/lib/libgpac* key: gpac-v2.4.0-ubuntu22 diff --git a/.github/workflows/build_deb.yml b/.github/workflows/build_deb.yml index 060e0e131..8e181aea1 100644 --- a/.github/workflows/build_deb.yml +++ b/.github/workflows/build_deb.yml @@ -99,7 +99,7 @@ jobs: - name: Cache GPAC build if: steps.should_build.outputs.should_build == 'true' id: cache-gpac - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/gpac-install key: gpac-abi-16.4-ubuntu24-deb diff --git a/.github/workflows/build_linux.yml b/.github/workflows/build_linux.yml index 2f54d4356..5cafb091c 100644 --- a/.github/workflows/build_linux.yml +++ b/.github/workflows/build_linux.yml @@ -146,7 +146,7 @@ jobs: run: sudo apt update && sudo apt-get install libgpac-dev libavcodec-dev libavformat-dev libavutil-dev libswresample-dev libswscale-dev - uses: actions/checkout@v6 - name: cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | src/rust/.cargo/registry diff --git a/.github/workflows/build_mac.yml b/.github/workflows/build_mac.yml index c7f56f1b3..aea79e748 100644 --- a/.github/workflows/build_mac.yml +++ b/.github/workflows/build_mac.yml @@ -195,7 +195,7 @@ jobs: steps: - uses: actions/checkout@v6 - name: cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | src/rust/.cargo/registry diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml index 9e1845bda..68559e67d 100644 --- a/.github/workflows/build_windows.yml +++ b/.github/workflows/build_windows.yml @@ -70,7 +70,7 @@ jobs: # Cache vcpkg installed packages separately for faster restores - name: Cache vcpkg installed packages id: vcpkg-installed-cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ github.workspace }}/vcpkg/installed key: vcpkg-installed-${{ runner.os }}-${{ matrix.vcpkg_triplet }}-${{ env.VCPKG_COMMIT }}-${{ hashFiles('windows/vcpkg.json') }} @@ -84,7 +84,7 @@ jobs: # Cache Rust/Cargo artifacts - name: Cache Cargo registry - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -95,7 +95,7 @@ jobs: # Cache Cargo build artifacts - rust.bat sets CARGO_TARGET_DIR to windows/ - name: Cache Cargo build artifacts - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ github.workspace }}/windows/${{ matrix.rust_target }} key: ${{ runner.os }}-${{ matrix.arch }}-cargo-build-${{ hashFiles('**/Cargo.lock') }}-${{ hashFiles('src/rust/**/*.rs') }} diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index c976fb6d6..db7bb12bb 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -35,7 +35,7 @@ jobs: steps: - uses: actions/checkout@v6 - name: cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ${{ matrix.workdir }}/.cargo/registry diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 65157e789..910d77fbb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -77,7 +77,7 @@ jobs: # Cache vcpkg installed packages separately for faster restores - name: Cache vcpkg installed packages id: vcpkg-installed-cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ github.workspace }}/vcpkg/installed key: vcpkg-installed-${{ runner.os }}-${{ matrix.vcpkg_triplet }}-${{ env.VCPKG_COMMIT }}-${{ hashFiles('windows/vcpkg.json') }} @@ -95,7 +95,7 @@ jobs: # Cache Cargo registry - name: Cache Cargo registry - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry diff --git a/.github/workflows/test_rust.yml b/.github/workflows/test_rust.yml index 95ba15abc..7fabc8c2f 100644 --- a/.github/workflows/test_rust.yml +++ b/.github/workflows/test_rust.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@v6 - name: cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | src/rust/.cargo/registry