From c421a62764a92d2d0ccbcd840a8072ffaf52d638 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 25 Jul 2026 18:16:50 +0000 Subject: [PATCH] Bump actions/cache from 4 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 4 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/v4...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/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fc1c374..aa77898 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: - name: Install Python protobuf run: python -m pip install -r clients/python/requirements.txt - name: Cache FetchContent deps - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: build/_deps key: mps-deps-ubuntu-${{ hashFiles('cmake/**', 'CMakeLists.txt', 'src/common/CMakeLists.txt') }} @@ -89,7 +89,7 @@ jobs: cache: true arch: win64_msvc2022_64 - name: Cache FetchContent deps - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: MultiProcessShell/build/_deps key: mps-deps-win-${{ hashFiles('MultiProcessShell/cmake/**', 'MultiProcessShell/CMakeLists.txt', 'MultiProcessShell/src/common/CMakeLists.txt') }}