From c3dccd9957e095845a38e734ae62492de20ea638 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 00:43:17 +0000 Subject: [PATCH] build(deps): bump the actions-updates group with 2 updates Bumps the actions-updates group with 2 updates: [actions/cache/restore](https://github.com/actions/cache) and [actions/cache/save](https://github.com/actions/cache). Updates `actions/cache/restore` from 6.0.0 to 6.1.0 - [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/2c8a9bd7457de244a408f35966fab2fb45fda9c8...55cc8345863c7cc4c66a329aec7e433d2d1c52a9) Updates `actions/cache/save` from 6.0.0 to 6.1.0 - [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/2c8a9bd7457de244a408f35966fab2fb45fda9c8...55cc8345863c7cc4c66a329aec7e433d2d1c52a9) --- updated-dependencies: - dependency-name: actions/cache/restore dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-updates - dependency-name: actions/cache/save dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-updates ... Signed-off-by: dependabot[bot] --- .github/workflows/cache-refresh.yml | 4 ++-- .github/workflows/matrix.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cache-refresh.yml b/.github/workflows/cache-refresh.yml index 40585f6..a683740 100644 --- a/.github/workflows/cache-refresh.yml +++ b/.github/workflows/cache-refresh.yml @@ -54,7 +54,7 @@ jobs: egress-policy: audit - name: restore ccache id: restore - uses: actions/cache/restore@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v5.0.2 + uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v5.0.2 with: path: ~/.cache/kernel-ccache key: "${{ matrix.entry.prefix }}-${{ github.run_id }}" @@ -62,7 +62,7 @@ jobs: ${{ matrix.entry.prefix }}- - name: save ccache if: steps.restore.outputs.cache-matched-key != '' - uses: actions/cache/save@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v5.0.2 + uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v5.0.2 with: path: ~/.cache/kernel-ccache key: "${{ matrix.entry.prefix }}-${{ github.run_id }}" diff --git a/.github/workflows/matrix.yml b/.github/workflows/matrix.yml index 34c18f5..9100ae3 100644 --- a/.github/workflows/matrix.yml +++ b/.github/workflows/matrix.yml @@ -93,7 +93,7 @@ jobs: username: "${{github.actor}}" password: "${{secrets.GITHUB_TOKEN}}" - name: restore ccache - uses: actions/cache/restore@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v5.0.2 + uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v5.0.2 with: path: ~/.cache/kernel-ccache # restore-keys is important here - it lets us restore the most recent cache key, @@ -128,7 +128,7 @@ jobs: # whose entries the next build can actually restore. PRs still benefit because # they will fallthrough to/inherit parent branch caches if: github.ref == 'refs/heads/main' - uses: actions/cache/save@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v5.0.2 + uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v5.0.2 with: path: ~/.cache/kernel-ccache # The run_id here is just for write-key uniqueness, as GH doesn't allow overwriting