From cdd69bdd9a6a5074610440eecc2b40158c8f7bf4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 12 Jan 2026 09:31:19 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v5 --- analyze-project/action.yml | 2 +- setup-poetry/action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/analyze-project/action.yml b/analyze-project/action.yml index 1b841f8..e5f7e00 100644 --- a/analyze-project/action.yml +++ b/analyze-project/action.yml @@ -45,7 +45,7 @@ runs: echo "hash=$install_args_hash" >> "$GITHUB_OUTPUT" shell: bash - name: Cache virtualenv - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 with: path: ${{ steps.get_project_info.outputs.venv-path }} key: ${{ steps.get_project_info.outputs.name }}-${{ runner.os }}-py${{ env.pythonVersion }}-${{ hashFiles(format('{0}/poetry.lock', inputs.project-directory)) }}-${{ steps.install_args_hash.outputs.hash }} diff --git a/setup-poetry/action.yml b/setup-poetry/action.yml index 6f375f3..f8d0a3f 100644 --- a/setup-poetry/action.yml +++ b/setup-poetry/action.yml @@ -52,7 +52,7 @@ runs: - name: Cache poetry if: ${{ inputs.use-cache == 'true' }} id: cache-poetry - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 with: # Using ${{ env.POETRY_HOME }} here does not work because it is evaluated before the "set paths" step runs. path: |