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
4 changes: 2 additions & 2 deletions .github/workflows/build-arch-emu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:

- name: restore ccache
# setup the GitHub cache used to maintain the ccache from one job to the next
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
# location of the ccache of the chroot in the root file system
path: /home/runner/rootfs/alpine-latest-${{ matrix.arch }}/home/runner/.ccache
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
# Save the cache after we are done building
# This helps to retain the ccache even if the subsequent steps are failing.
if: always() && (steps.build.outcome != 'skipped')
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: /home/runner/rootfs/alpine-latest-${{ matrix.arch }}/home/runner/.ccache
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-mingw.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:

- name: restore ccache
# Setup the GitHub cache used to maintain the ccache from one job to the next
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: ${{ steps.ccache-prepare.outputs.ccachedir }}
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
# Save the cache after we are done building
# This helps to retain the ccache even if the subsequent steps are failing.
if: always() && (steps.build.outcome != 'skipped')
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: ${{ steps.ccache-prepare.outputs.ccachedir }}
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:

- name: restore ccache
# setup the GitHub cache used to maintain the ccache from one job to the next
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: ~/.ccache
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
# Save the cache after we are done building
# This helps to retain the ccache even if the subsequent steps are failing.
if: always() && (steps.build.outcome != 'skipped')
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: ~/.ccache
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cross-compile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ jobs:

- name: restore ccache
# setup the GitHub cache used to maintain the ccache from one job to the next
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
# location of the ccache of the chroot in the root file system
path: /home/runner/.ccache
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
- name: save ccache
# Save the cache after we are done (successfully) building
# This helps to retain the ccache even if the subsequent steps are failing
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: /home/runner/.ccache
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:

- name: restore ccache
# setup the GitHub cache used to maintain the ccache from one job to the next
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: /Users/runner/Library/Caches/ccache
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
# Save the cache after we are done building
# This helps to retain the ccache even if the subsequent steps are failing.
if: always() && (steps.build.outcome != 'skipped')
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: /Users/runner/Library/Caches/ccache
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/root-cmakelists-msvc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:

- name: cache conda packages
id: conda-cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: C:/Miniconda/envs/test
key: conda:netlib:msvc
Expand All @@ -106,7 +106,7 @@ jobs:

- name: save conda cache
if: ${{ steps.conda-cache.outputs.cache-hit != 'true' }}
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: C:/Miniconda/envs/test
key: ${{ steps.conda-cache.outputs.cache-primary-key }}
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:

- name: restore ccache
# Setup the GitHub cache used to maintain the ccache from one job to the next
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: ${{ steps.ccache-prepare.outputs.ccachedir }}
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down Expand Up @@ -260,7 +260,7 @@ jobs:
# Save the cache after we are done building
# This helps to retain the ccache even if the subsequent steps are failing.
if: always() && (steps.build.outcome != 'skipped')
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: ${{ steps.ccache-prepare.outputs.ccachedir }}
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/root-cmakelists.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:

- name: restore ccache
# setup the GitHub cache used to maintain the ccache from one job to the next
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: ~/.ccache
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
# Save the cache after we are done building
# This helps to retain the ccache even if the subsequent steps are failing.
if: always() && (steps.build.outcome != 'skipped')
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: ~/.ccache
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down
Loading