From bcfbbf198dd5cb1b447a2570a5fd097cd9b11383 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 20:07:15 +0000 Subject: [PATCH] Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/benches.yml | 2 +- .github/workflows/ci.yml | 2 +- .github/workflows/gh-pages.yml | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/benches.yml b/.github/workflows/benches.yml index 5c6e781d..01ab5f80 100644 --- a/.github/workflows/benches.yml +++ b/.github/workflows/benches.yml @@ -19,7 +19,7 @@ jobs: with: components: rust-src - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: | ~/.cargo/registry diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8fe7af27..79e6b9ee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -407,7 +407,7 @@ jobs: with: node-version: 14 - run: python -m pip install --upgrade pip && pip install nox - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: cache with: path: | diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index b151c6e1..ec8874d5 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -63,7 +63,7 @@ jobs: - uses: actions/setup-python@v5 - uses: dtolnay/rust-toolchain@stable - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: | ~/.cargo/registry @@ -82,7 +82,7 @@ jobs: # Download previous benchmark result from cache (if exists) - name: Download previous benchmark data - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ./cache key: ${{ runner.os }}-benchmark @@ -110,7 +110,7 @@ jobs: - uses: actions/setup-python@v5 - uses: dtolnay/rust-toolchain@stable - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: | ~/.cargo/registry @@ -120,7 +120,7 @@ jobs: continue-on-error: true - name: Download previous benchmark data - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ./cache key: ${{ runner.os }}-pytest-benchmark