From 813ef2bfb24525369409c14e4eec4dd1631ab6f6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 12 Jan 2026 05:09:56 +0000 Subject: [PATCH] Update actions/cache action to v5 | datasource | package | from | to | | ----------- | ------------- | ------ | ------ | | github-tags | actions/cache | v4.3.0 | v5.0.1 | Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/actions/setup/action.yaml | 2 +- .github/workflows/ci.yaml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/setup/action.yaml b/.github/actions/setup/action.yaml index 90078825..1fc577ff 100644 --- a/.github/actions/setup/action.yaml +++ b/.github/actions/setup/action.yaml @@ -43,7 +43,7 @@ runs: args: --operator=runner - name: Fetch Cached Artifacts - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 with: path: ${{ github.workspace }}/dist key: tailout-${{ github.run_id }}-${{ github.run_number }} diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8de28c21..a2ed69ac 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -82,7 +82,7 @@ jobs: - name: Restore Artifacts Cache id: restore-cache - uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 with: path: ${{ github.workspace }}/dist key: tailout-${{ runner.os }}-${{ hashFiles('**/go.sum') }} @@ -141,7 +141,7 @@ jobs: run: gh cache delete --repo ${{ github.repository }} ${{ steps.restore-cache.outputs.cache-primary-key }} - name: Cache Artifacts - uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 if: always() with: path: ${{ github.workspace }}/dist @@ -174,7 +174,7 @@ jobs: driver-opts: network=host - name: Fetch Cached Artifacts - uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 with: path: ${{ github.workspace }}/dist key: ${{ needs.binary.outputs.cache-key }}