From 87b12ab6236daa101e5bb27c8cd6c1645f1314b8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Apr 2026 17:59:22 +0000 Subject: [PATCH] Build(deps): bump actions/cache from 4 to 5 in /poetry Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- poetry/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/poetry/action.yml b/poetry/action.yml index ba7f825..a658418 100644 --- a/poetry/action.yml +++ b/poetry/action.yml @@ -47,7 +47,7 @@ runs: POETRY_HOME: ${{ runner.temp }}/poetry shell: bash - - uses: actions/cache@v4 + - uses: actions/cache@v5 id: cache with: path: ${{ steps.poetry-dir.outputs.home }} @@ -68,7 +68,7 @@ runs: echo "cache-dir=$(poetry config cache-dir)" >> $GITHUB_OUTPUT shell: bash - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ${{ steps.poetry-info.outputs.cache-dir }} key: | @@ -78,7 +78,7 @@ runs: ${{ runner.os }}-${{ runner.arch }}-poetry${{ inputs.version }}-cache-py${{ steps.python-version.outputs.version }}- if: inputs.cache != 'false' && inputs.cache-restore-only == 'false' - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 with: path: ${{ steps.poetry-info.outputs.cache-dir }} key: |