From a6374c9d8f4ed36225c2886896d700116c95089e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 14:53:50 +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/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1c8c77c..2b90cbc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,7 +19,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Pip cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-${{ matrix.python-version }}-pip-tests-${{ hashFiles('pyproject.toml','requirements-dev.txt','constraints.txt') }} @@ -48,7 +48,7 @@ jobs: with: python-version: 3.9 - name: Pip cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-${{ matrix.python-version }}-pip-lint-${{ hashFiles('pyproject.toml','requirements-dev.txt','constraints.txt') }} @@ -70,7 +70,7 @@ jobs: with: python-version: "3.10" - name: Pip cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-${{ matrix.python-version }}-pip-lint-${{ hashFiles('pyproject.toml','requirements-dev.txt','constraints.txt') }} @@ -103,7 +103,7 @@ jobs: with: python-version: 3.9 - name: Pip cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-${{ matrix.python-version }}-pip-docs-${{ hashFiles('pyproject.toml','requirements-dev.txt','constraints.txt') }}