From 6c3c4c80cb04c65579b0b4f7407d35cc245dd1bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 00:33:24 +0000 Subject: [PATCH] Build(deps): bump actions/cache from 5 to 6 in /poetry Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' 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 a658418..6377fdf 100644 --- a/poetry/action.yml +++ b/poetry/action.yml @@ -47,7 +47,7 @@ runs: POETRY_HOME: ${{ runner.temp }}/poetry shell: bash - - uses: actions/cache@v5 + - uses: actions/cache@v6 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@v5 + - uses: actions/cache@v6 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@v5 + - uses: actions/cache/restore@v6 with: path: ${{ steps.poetry-info.outputs.cache-dir }} key: |