From 335ffa5e26a113aa4b23d1b16e0eaf2092432330 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Jan 2026 22:36:07 +0000 Subject: [PATCH] Bump actions/cache from 4 to 5 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] --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b091182..d76d54e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: - name: Load cached Poetry installation id: cached-poetry - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.local key: poetry-${{ env.POETRY_VERSION }}-${{ runner.os }} @@ -40,7 +40,7 @@ jobs: - name: Load cached venv id: cached-venv - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .venv key: venv-lint-${{ runner.os }}-py3.14-${{ hashFiles('poetry.lock') }} @@ -71,7 +71,7 @@ jobs: - name: Load cached Poetry installation id: cached-poetry - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.local key: poetry-${{ env.POETRY_VERSION }}-${{ runner.os }} @@ -86,7 +86,7 @@ jobs: - name: Load cached venv id: cached-venv - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .venv key: venv-test-${{ runner.os }}-py3.14-${{ hashFiles('poetry.lock') }} @@ -132,7 +132,7 @@ jobs: - name: Load cached Poetry installation id: cached-poetry - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.local key: poetry-${{ env.POETRY_VERSION }}-${{ runner.os }} @@ -147,7 +147,7 @@ jobs: - name: Load cached venv id: cached-venv - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .venv key: venv-security-${{ runner.os }}-py3.14-${{ hashFiles('poetry.lock') }}