Skip to content
Open
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/make-alpine.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,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-x86/home/runner/.ccache
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:

- name: save ccache
# Save the cache after we are done (successfully) building
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: /home/runner/rootfs/alpine-latest-x86/home/runner/.ccache
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/make-cross.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,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 @@ -227,7 +227,7 @@ jobs:

- name: save ccache
# Save the cache after we are done (successfully) building
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/make-cygwin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:

- name: restore ccache
# Setup a github cache used to maintain the ccache from one run 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 @@ -205,7 +205,7 @@ jobs:

- name: save ccache
# Save the cache after we are done (successfully) building
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/make-macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,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
id: restore-ccache
with:
path: /Users/runner/Library/Caches/ccache
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:

- name: save ccache
# Save the cache after we are done (successfully) building
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
4 changes: 2 additions & 2 deletions .github/workflows/make-mingw.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,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 @@ -217,7 +217,7 @@ jobs:

- name: save ccache
# Save the cache after we are done (successfully) building
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/make-ubuntu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,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 @@ -177,7 +177,7 @@ jobs:

- name: save ccache
# Save the cache after we are done (successfully) building
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: ~/.ccache
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down
Loading