From 03f4d138ed16f16bc714655010d1415363faf403 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 14 Aug 2026 18:44:55 +0000 Subject: [PATCH] Update actions/cache action from v5 to v6 (major v6) --- .github/actions/cache/action.yml | 4 ++-- .github/workflows/quality-ci.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/cache/action.yml b/.github/actions/cache/action.yml index 3b0a6a3..c2147f6 100644 --- a/.github/actions/cache/action.yml +++ b/.github/actions/cache/action.yml @@ -26,7 +26,7 @@ runs: - name: Add cache for cargo id: cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | # List is taken from . @@ -41,7 +41,7 @@ runs: key: ${{ runner.os }}-${{ inputs.cache-key }}-${{ hashFiles('Cargo.lock', 'Cargo.toml', '.github/ci-tools.toml', '.cargo/config.toml') }} lookup-only: ${{ env.LOOKUP_CARGO_HOME }} - name: cache target - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | # Cache target, but not temporary folders diff --git a/.github/workflows/quality-ci.yml b/.github/workflows/quality-ci.yml index ad145e9..0a9c1a6 100644 --- a/.github/workflows/quality-ci.yml +++ b/.github/workflows/quality-ci.yml @@ -47,7 +47,7 @@ jobs: cache: pip - name: Install dependencies run: pip install -U pip setuptools wheel pre-commit - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ~/.cache/pre-commit/ key: pre-commit-4|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}