diff --git a/.github/actions/cache/action.yml b/.github/actions/cache/action.yml index 3302c23..3b0a6a3 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@v4 # v4.2.0 + uses: actions/cache@v5 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@v4 + uses: actions/cache@v5 with: path: | # Cache target, but not temporary folders diff --git a/.github/workflows/quality-ci.yml b/.github/workflows/quality-ci.yml index 91eb781..fc10254 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@v4 + - uses: actions/cache@v5 with: path: ~/.cache/pre-commit/ key: pre-commit-4|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}