diff --git a/.github/workflows/make-alpine.yaml b/.github/workflows/make-alpine.yaml index 3c48fb37c0..ffe91fba5e 100644 --- a/.github/workflows/make-alpine.yaml +++ b/.github/workflows/make-alpine.yaml @@ -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@v5 + uses: actions/cache/restore@v6 with: # location of the ccache of the chroot in the root file system path: /home/runner/rootfs/alpine-latest-x86/home/runner/.ccache @@ -208,7 +208,7 @@ jobs: - name: save ccache # Save the cache after we are done (successfully) building - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: /home/runner/rootfs/alpine-latest-x86/home/runner/.ccache key: ${{ steps.ccache-prepare.outputs.key }} diff --git a/.github/workflows/make-cross.yaml b/.github/workflows/make-cross.yaml index 5dab1260f8..5273fbb263 100644 --- a/.github/workflows/make-cross.yaml +++ b/.github/workflows/make-cross.yaml @@ -168,7 +168,7 @@ jobs: - name: restore ccache # setup the github cache used to maintain the ccache from one job to the next - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: ~/.ccache key: ${{ steps.ccache-prepare.outputs.key }} @@ -229,7 +229,7 @@ jobs: - name: save ccache # Save the cache after we are done (successfully) building - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: ~/.ccache key: ${{ steps.ccache-prepare.outputs.key }} diff --git a/.github/workflows/make-cygwin.yaml b/.github/workflows/make-cygwin.yaml index 0cf26f6486..05345045c6 100644 --- a/.github/workflows/make-cygwin.yaml +++ b/.github/workflows/make-cygwin.yaml @@ -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@v5 + uses: actions/cache/restore@v6 with: path: ${{ steps.ccache-prepare.outputs.ccachedir }} key: ${{ steps.ccache-prepare.outputs.key }} @@ -204,7 +204,7 @@ jobs: - name: save ccache # Save the cache after we are done (successfully) building - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: ${{ steps.ccache-prepare.outputs.ccachedir }} key: ${{ steps.ccache-prepare.outputs.key }} diff --git a/.github/workflows/make-macos.yaml b/.github/workflows/make-macos.yaml index 55c47e4300..e74edcdb80 100644 --- a/.github/workflows/make-macos.yaml +++ b/.github/workflows/make-macos.yaml @@ -92,7 +92,7 @@ jobs: - name: restore ccache # setup the github cache used to maintain the ccache from one job to the next - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 id: restore-ccache with: path: /Users/runner/Library/Caches/ccache @@ -168,7 +168,7 @@ jobs: - name: save ccache # Save the cache after we are done (successfully) building - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: /Users/runner/Library/Caches/ccache key: ${{ steps.ccache-prepare.outputs.key }} diff --git a/.github/workflows/make-mingw.yaml b/.github/workflows/make-mingw.yaml index 01b6de969f..df9b02eafc 100644 --- a/.github/workflows/make-mingw.yaml +++ b/.github/workflows/make-mingw.yaml @@ -148,7 +148,7 @@ jobs: - name: restore ccache # Setup the github cache used to maintain the ccache from one job to the next - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: ${{ steps.ccache-prepare.outputs.ccachedir }} key: ${{ steps.ccache-prepare.outputs.key }} @@ -217,7 +217,7 @@ jobs: - name: save ccache # Save the cache after we are done (successfully) building - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: ${{ steps.ccache-prepare.outputs.ccachedir }} key: ${{ steps.ccache-prepare.outputs.key }} diff --git a/.github/workflows/make-ubuntu.yaml b/.github/workflows/make-ubuntu.yaml index 2363693ac5..6503b36527 100644 --- a/.github/workflows/make-ubuntu.yaml +++ b/.github/workflows/make-ubuntu.yaml @@ -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@v5 + uses: actions/cache/restore@v6 with: path: ~/.ccache key: ${{ steps.ccache-prepare.outputs.key }} @@ -177,7 +177,7 @@ jobs: - name: save ccache # Save the cache after we are done (successfully) building - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: ~/.ccache key: ${{ steps.ccache-prepare.outputs.key }}