From 164c4d85a6a8470ba84b663d2676f11c32e80121 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 06:29:36 +0000 Subject: [PATCH] build(deps): bump actions/cache from 3 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 3 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/v3...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] --- .github/workflows/pylic.yml | 4 ++-- .github/workflows/static-checking.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pylic.yml b/.github/workflows/pylic.yml index b4b4f9d8..a7c8c95c 100644 --- a/.github/workflows/pylic.yml +++ b/.github/workflows/pylic.yml @@ -28,7 +28,7 @@ jobs: # ----- install & configure poetry ----- #---------------------------------------------- - name: Load Cached Poetry Installation - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: ~/.local # the path depends on the OS key: poetry-no-dev-3 # increment to reset cache @@ -43,7 +43,7 @@ jobs: #---------------------------------------------- - name: Load cached venv id: cached-poetry-no-dev-dependencies-v1 - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: .venv key: venv-no-dev-dependencies-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} diff --git a/.github/workflows/static-checking.yml b/.github/workflows/static-checking.yml index 1bbd58bc..6973556a 100644 --- a/.github/workflows/static-checking.yml +++ b/.github/workflows/static-checking.yml @@ -28,7 +28,7 @@ jobs: # ----- install & configure poetry ----- #---------------------------------------------- - name: Load Cached Poetry Installation - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: ~/.local # the path depends on the OS key: poetry-with-dev-0 # increment to reset cache @@ -44,7 +44,7 @@ jobs: #---------------------------------------------- - name: Load cached venv id: cached-poetry-with-dev-dependencies - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: .venv key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}