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] <support@github.com>
This commit is contained in:
dependabot[bot] 2024-01-22 20:07:15 +00:00 committed by GitHub
parent bf32986b1d
commit bcfbbf198d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View file

@ -19,7 +19,7 @@ jobs:
with: with:
components: rust-src components: rust-src
- uses: actions/cache@v3 - uses: actions/cache@v4
with: with:
path: | path: |
~/.cargo/registry ~/.cargo/registry

View file

@ -407,7 +407,7 @@ jobs:
with: with:
node-version: 14 node-version: 14
- run: python -m pip install --upgrade pip && pip install nox - run: python -m pip install --upgrade pip && pip install nox
- uses: actions/cache@v3 - uses: actions/cache@v4
id: cache id: cache
with: with:
path: | path: |

View file

@ -63,7 +63,7 @@ jobs:
- uses: actions/setup-python@v5 - uses: actions/setup-python@v5
- uses: dtolnay/rust-toolchain@stable - uses: dtolnay/rust-toolchain@stable
- uses: actions/cache@v3 - uses: actions/cache@v4
with: with:
path: | path: |
~/.cargo/registry ~/.cargo/registry
@ -82,7 +82,7 @@ jobs:
# Download previous benchmark result from cache (if exists) # Download previous benchmark result from cache (if exists)
- name: Download previous benchmark data - name: Download previous benchmark data
uses: actions/cache@v3 uses: actions/cache@v4
with: with:
path: ./cache path: ./cache
key: ${{ runner.os }}-benchmark key: ${{ runner.os }}-benchmark
@ -110,7 +110,7 @@ jobs:
- uses: actions/setup-python@v5 - uses: actions/setup-python@v5
- uses: dtolnay/rust-toolchain@stable - uses: dtolnay/rust-toolchain@stable
- uses: actions/cache@v3 - uses: actions/cache@v4
with: with:
path: | path: |
~/.cargo/registry ~/.cargo/registry
@ -120,7 +120,7 @@ jobs:
continue-on-error: true continue-on-error: true
- name: Download previous benchmark data - name: Download previous benchmark data
uses: actions/cache@v3 uses: actions/cache@v4
with: with:
path: ./cache path: ./cache
key: ${{ runner.os }}-pytest-benchmark key: ${{ runner.os }}-pytest-benchmark