From c438d543238cd44d8731f80fa0f74276dab78afd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 15:05:19 +0000 Subject: [PATCH] ci: 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/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c982900..52a3148 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Cache pip packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('requirements*.txt', 'requirements*.in', 'pyproject.toml') }} @@ -37,7 +37,7 @@ jobs: ${{ runner.os }}-pip- - name: Cache mypy cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: .mypy_cache key: ${{ runner.os }}-mypy-${{ matrix.python-version }}-${{ hashFiles('src/**/*.py') }} @@ -46,7 +46,7 @@ jobs: ${{ runner.os }}-mypy- - name: Cache pre-commit - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pre-commit key: ${{ runner.os }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }} @@ -112,7 +112,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Cache pip packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('requirements*.txt', 'requirements*.in', 'pyproject.toml') }} @@ -163,7 +163,7 @@ jobs: python-version: "3.11" - name: Cache pip packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-3.11-security-${{ hashFiles('requirements*.txt', 'requirements*.in', 'pyproject.toml') }} @@ -172,7 +172,7 @@ jobs: ${{ runner.os }}-pip- - name: Cache safety DB - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/safety-db key: ${{ runner.os }}-safety-db-${{ github.run_id }} @@ -314,7 +314,7 @@ jobs: python-version: "3.11" - name: Cache pip packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-3.11-build-${{ hashFiles('requirements*.txt', 'requirements*.in', 'pyproject.toml') }}