From 801cd4a9f1b2f4511ce2f5a95d60b118baf12de0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 15:54:11 +0000 Subject: [PATCH] Bump actions/cache from 5 to 6 in the github-actions group Bumps the github-actions group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `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 dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/pre-commit.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 50d3942..8545578 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -54,7 +54,7 @@ jobs: run: | pip install -r dev-requirements.txt -r mypy-requirements.txt -c constraints-${{ matrix.python-version }}.txt-relaxed - name: MyPy cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: '.mypy_cache/[0-9]*' key: mypy-${{ matrix.python-version }} @@ -138,7 +138,7 @@ jobs: - run: | pip install -r dev-requirements.txt -r mypy-requirements.txt -c constraints-${{ matrix.python-version }}.txt-relaxed - name: MyPy cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: '.mypy_cache/[0-9]*' key: mypy-${{ matrix.python-version }}