From 159e57a3dd1b90fde604a07fec0417b05a838356 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 13:08:49 +0000 Subject: [PATCH] build(deps): bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' 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 b25b2ae468..9951f624b2 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@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 @@ -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 }} diff --git a/.github/workflows/make-cross.yaml b/.github/workflows/make-cross.yaml index 25c944cf09..48fc0c369e 100644 --- a/.github/workflows/make-cross.yaml +++ b/.github/workflows/make-cross.yaml @@ -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 }} @@ -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 }} diff --git a/.github/workflows/make-cygwin.yaml b/.github/workflows/make-cygwin.yaml index 02da3e7cbf..97c514af95 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@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.ccache-prepare.outputs.ccachedir }} key: ${{ steps.ccache-prepare.outputs.key }} @@ -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 }} diff --git a/.github/workflows/make-macos.yaml b/.github/workflows/make-macos.yaml index 27920576ce..4d00e94f03 100644 --- a/.github/workflows/make-macos.yaml +++ b/.github/workflows/make-macos.yaml @@ -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 @@ -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 }} diff --git a/.github/workflows/make-mingw.yaml b/.github/workflows/make-mingw.yaml index 994928e64f..30e9db421e 100644 --- a/.github/workflows/make-mingw.yaml +++ b/.github/workflows/make-mingw.yaml @@ -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 }} @@ -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 }} diff --git a/.github/workflows/make-ubuntu.yaml b/.github/workflows/make-ubuntu.yaml index 4a127f2c38..75d5eb6fb8 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@v4 + uses: actions/cache/restore@v5 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@v4 + uses: actions/cache/save@v5 with: path: ~/.ccache key: ${{ steps.ccache-prepare.outputs.key }}