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 }}