Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/Code_Coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/benchmark_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cmake_fedora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sanitizers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand Down
Loading