From 0e742316c8b245581e7fc321d124d1403526f749 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 20:18:36 +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/docs.yaml | 2 +- .github/workflows/test.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index cb4f3e4..dc0b229 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -32,7 +32,7 @@ jobs: python-version: ${{ matrix.python-version }} # Cache Poetry dependencies to speed up builds - name: Cache Poetry virtualenv - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pypoetry key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }} diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 3e80d94..3213272 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -33,7 +33,7 @@ jobs: shell: bash # Cache Poetry dependencies to speed up builds - name: Cache Poetry virtualenv - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pypoetry key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }} @@ -95,7 +95,7 @@ jobs: shell: bash # Cache Poetry dependencies to speed up builds - name: Cache Poetry virtualenv - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pypoetry key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }}