From e1089ff88e59f1278b70f20c9fa7a1c890fdf623 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 00:32:56 +0000 Subject: [PATCH] Bump actions/cache from 5 to 6 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] --- .github/workflows/CDA-testing.yml | 2 +- .github/workflows/pypi-deploy.yml | 2 +- .github/workflows/test-deploy.yml | 2 +- .github/workflows/testing.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CDA-testing.yml b/.github/workflows/CDA-testing.yml index c66bbe4..9138612 100644 --- a/.github/workflows/CDA-testing.yml +++ b/.github/workflows/CDA-testing.yml @@ -41,7 +41,7 @@ jobs: # Poetry will handle installation and caching - name: Cache Python dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 id: cache-poetry-venv with: path: .venv diff --git a/.github/workflows/pypi-deploy.yml b/.github/workflows/pypi-deploy.yml index df4fe66..06100df 100644 --- a/.github/workflows/pypi-deploy.yml +++ b/.github/workflows/pypi-deploy.yml @@ -23,7 +23,7 @@ jobs: uses: abatilo/actions-poetry@v4 - name: Cache Virtual Environment - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ./.venv key: venv-${{ hashFiles('poetry.lock') }} diff --git a/.github/workflows/test-deploy.yml b/.github/workflows/test-deploy.yml index 6501696..c78ad17 100644 --- a/.github/workflows/test-deploy.yml +++ b/.github/workflows/test-deploy.yml @@ -30,7 +30,7 @@ jobs: uses: abatilo/actions-poetry@v4 - name: Cache Virtual Environment - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ./.venv key: venv-${{ hashFiles('poetry.lock') }} diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index e51f912..93f992e 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -22,7 +22,7 @@ jobs: uses: abatilo/actions-poetry@v4 - name: Cache Virtual Environment - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ./.venv key: venv-${{ hashFiles('poetry.lock') }}