From 1b17047065222710cb6e4c7b218420b1cfdeb6f5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 05:03:39 +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/publish.yml | 2 +- .github/workflows/pytest.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6a1aa8e..807e585 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,7 +18,7 @@ jobs: - name: Install poetry run: pipx install poetry==${{ env.POETRY_VERSION }} --python ${{ env.PYTHON_VERSION }} - name: Cache poetry venv - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .venv key: ${{ runner.os }}-${{ env.POETRY_VERSION }}-venv-${{ hashFiles('**/poetry.lock') }} diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 5e76c52..50d9393 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -23,7 +23,7 @@ jobs: - name: Install poetry run: pipx install poetry==${{ env.POETRY_VERSION }} --python ${{ matrix.python-version }} - name: Cache poetry venv - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .venv key: ${{ matrix.os }}-${{ matrix.python-version }}-venv-${{ hashFiles('**/poetry.lock') }} @@ -52,7 +52,7 @@ jobs: - name: Install poetry run: pipx install poetry==${{ env.POETRY_VERSION }} --python ${{ matrix.python-version }} - name: Cache poetry venv - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .venv key: ${{ matrix.os }}-${{ matrix.python-version }}-venv-${{ hashFiles('**/poetry.lock') }}