From 441cb6d5c430d1344951a50b3c1de296ec6a798e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 17:12:12 +0000 Subject: [PATCH] Build(deps): 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/lint.yml | 2 +- .github/workflows/pre-commit-autoupdate.yml | 2 +- .github/workflows/test.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index b7c737bc..6b0535f8 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -25,7 +25,7 @@ jobs: uses: actions/setup-python@v6 with: python-version: '3.10' - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-pip3-${{ hashFiles('*requirements.txt') }} diff --git a/.github/workflows/pre-commit-autoupdate.yml b/.github/workflows/pre-commit-autoupdate.yml index 1cbfd2d9..6c1de84b 100644 --- a/.github/workflows/pre-commit-autoupdate.yml +++ b/.github/workflows/pre-commit-autoupdate.yml @@ -19,7 +19,7 @@ jobs: python-version: '3.11' - name: Use Pip cache if available - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-pip3-${{ hashFiles('*requirements.txt') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d8f6a685..fa5219cb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,7 +28,7 @@ jobs: uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-pip3-${{ hashFiles('*requirements.txt') }} @@ -50,7 +50,7 @@ jobs: uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-pip3-${{ hashFiles('*requirements.txt') }}