From dee7a22588a7c4e03c7d2abee9823b26cbeaac25 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 13:03:50 +0000 Subject: [PATCH] build(deps): 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/make-alpine.yaml | 4 ++-- .github/workflows/make-cross.yaml | 4 ++-- .github/workflows/make-cygwin.yaml | 4 ++-- .github/workflows/make-macos.yaml | 4 ++-- .github/workflows/make-mingw.yaml | 4 ++-- .github/workflows/make-ubuntu.yaml | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) 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 }}