From a347d661307d46eee4118ea4540bb1dded500a9c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 25 Jun 2026 07:57:01 +0000 Subject: [PATCH] Update actions/cache action to v6 --- workflow-templates/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/workflow-templates/ci.yml b/workflow-templates/ci.yml index 8595337..1ead69c 100644 --- a/workflow-templates/ci.yml +++ b/workflow-templates/ci.yml @@ -158,7 +158,7 @@ jobs: - name: Cache wheel id: cache_whl - uses: actions/cache@v3 + uses: actions/cache@v6 with: path: ${{ env.APP_PWD }}/dist/${{ env.PYTHON_VERSION }}/${{ env.WHL_NAME }} key: ${{ env.PYTHON_VERSION }}_${{ env.APP_DIR }}_${{ github.run_id }} @@ -185,7 +185,7 @@ jobs: - name: Restore whl id: restore_whl - uses: actions/cache@v3 + uses: actions/cache@v6 with: path: ${{ env.APP_PWD }}/dist/${{ env.MIN_PY_VER }}/${{ env.WHL_NAME }} key: ${{ env.MIN_PY_VER }}_${{ env.APP_DIR }}_${{ github.run_id }} @@ -246,7 +246,7 @@ jobs: - name: Restore whl id: restore_whl - uses: actions/cache@v3 + uses: actions/cache@v6 with: path: ${{ env.APP_PWD }}/dist/${{ env.MIN_PY_VER }}/${{ env.WHL_NAME }} key: ${{ env.MIN_PY_VER }}_${{ env.APP_DIR }}_${{ github.run_id }}