From c3d5fb7e03f76b4f9d05facb7351bdc73ece1fc5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 05:22:27 +0000 Subject: [PATCH] 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/analyzers.yml | 4 ++-- .github/workflows/ci v2.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/analyzers.yml b/.github/workflows/analyzers.yml index 7ab83298f..f027c9ee6 100644 --- a/.github/workflows/analyzers.yml +++ b/.github/workflows/analyzers.yml @@ -37,7 +37,7 @@ jobs: uses: turtlebrowser/get-conan@main - name: cache deps - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ env.CONAN_HOME }} key: deps-ci-ubuntu-clang-Release-${{ hashFiles('**/conanfile.py') }}-${{ hashFiles('**/CMakePresets.json') }} @@ -109,7 +109,7 @@ jobs: uses: turtlebrowser/get-conan@main - name: cache deps - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ env.CONAN_HOME }} key: deps-ci-ubuntu-clang-Release-${{ hashFiles('**/conanfile.py') }}-${{ hashFiles('**/CMakePresets.json') }} diff --git a/.github/workflows/ci v2.yml b/.github/workflows/ci v2.yml index 4ba2b794a..7ea1ce4e0 100644 --- a/.github/workflows/ci v2.yml +++ b/.github/workflows/ci v2.yml @@ -45,7 +45,7 @@ jobs: uses: turtlebrowser/get-conan@main - name: check cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 id: check_cache with: path: ${{ env.CONAN_HOME }} @@ -74,7 +74,7 @@ jobs: - name: Force Save Cache if: steps.check_cache.outputs.cache-hit != 'true' || github.event_name == 'schedule' - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: ${{ env.CONAN_HOME }} key: deps-${{ matrix.config.name }}-${{ matrix.build_type.config }}-${{ hashFiles('**/conanfile.py') }}-${{ hashFiles('**/CMakePresets.json') }} @@ -113,7 +113,7 @@ jobs: uses: turtlebrowser/get-conan@main - name: cache deps - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ env.CONAN_HOME }} key: deps-ci-ubuntu-clang-Release-${{ hashFiles('**/conanfile.py') }}-${{ hashFiles('**/CMakePresets.json') }} @@ -190,7 +190,7 @@ jobs: uses: turtlebrowser/get-conan@main - name: cache deps - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ env.CONAN_HOME }} key: deps-${{ matrix.config.name }}-${{ matrix.build_type.config }}-${{ hashFiles('**/conanfile.py') }}-${{ hashFiles('**/CMakePresets.json') }}