From b9519a5aa1c7b93b089c2596a24f16cab88365b8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 02:52:47 +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/Code_Coverage.yml | 2 +- .github/workflows/benchmark.yml | 2 +- .github/workflows/benchmark_pr.yml | 2 +- .github/workflows/cmake.yml | 2 +- .github/workflows/cmake_fedora.yml | 4 ++-- .github/workflows/sanitizers.yml | 2 +- .github/workflows/static_analysis.yml | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/Code_Coverage.yml b/.github/workflows/Code_Coverage.yml index 0cac0643..6775cc73 100644 --- a/.github/workflows/Code_Coverage.yml +++ b/.github/workflows/Code_Coverage.yml @@ -51,7 +51,7 @@ jobs: # ── CPM cache ───────────────────────────────────────────────────── - name: Cache CPM packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/cpm key: cpm-ubuntu-coverage-${{ hashFiles('**/CMakeLists.txt') }} diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index b927689b..baf8bf89 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -44,7 +44,7 @@ jobs: # Build your program with the given configuration run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} -j - name: Download previous benchmark data - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ./cache key: ${{ runner.os }}-benchmark diff --git a/.github/workflows/benchmark_pr.yml b/.github/workflows/benchmark_pr.yml index 40908291..24b712fc 100644 --- a/.github/workflows/benchmark_pr.yml +++ b/.github/workflows/benchmark_pr.yml @@ -43,7 +43,7 @@ jobs: # Build your program with the given configuration run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} -j - name: Download previous benchmark data - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ./cache key: ${{ runner.os }}-benchmark diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index ac0fa602..556b5e1f 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -430,7 +430,7 @@ jobs: # IMPORTANT: path must match CPM_SOURCE_CACHE exactly. # Tilde (~) is NOT safe here — use github.workspace for an absolute path. - name: Cache CPM packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ github.workspace }}/.cache/cpm key: cpm-${{ runner.os }}-${{ hashFiles('**/CMakeLists.txt') }} diff --git a/.github/workflows/cmake_fedora.yml b/.github/workflows/cmake_fedora.yml index e00dca95..8e93ddeb 100644 --- a/.github/workflows/cmake_fedora.yml +++ b/.github/workflows/cmake_fedora.yml @@ -549,7 +549,7 @@ jobs: # (which IS a JS action and works fine in containers), then configure # ccache via environment variables. - name: Restore ccache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ github.workspace }}/.ccache key: ccache-fedora-${{ matrix.name }}-${{ github.sha }} @@ -565,7 +565,7 @@ jobs: # ── CPM dependency cache ─────────────────────────────────────────────── # Must use an absolute path — CMake's file(DOWNLOAD) never expands ~. - name: Restore CPM cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ github.workspace }}/.cache/cpm key: cpm-fedora-${{ matrix.name }}-${{ hashFiles('**/CMakeLists.txt') }} diff --git a/.github/workflows/sanitizers.yml b/.github/workflows/sanitizers.yml index ec454a16..0b19e12f 100644 --- a/.github/workflows/sanitizers.yml +++ b/.github/workflows/sanitizers.yml @@ -154,7 +154,7 @@ jobs: # ── CPM cache ───────────────────────────────────────────────────── - name: Cache CPM packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/cpm key: cpm-ubuntu-san-${{ hashFiles('**/CMakeLists.txt') }} diff --git a/.github/workflows/static_analysis.yml b/.github/workflows/static_analysis.yml index ed8bceb0..9d545509 100644 --- a/.github/workflows/static_analysis.yml +++ b/.github/workflows/static_analysis.yml @@ -48,7 +48,7 @@ jobs: uses: seanmiddleditch/gha-setup-ninja@v6 - name: Cache CPM packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/cpm key: cpm-ubuntu-tidy-${{ hashFiles('**/CMakeLists.txt') }}