Merge pull request #3753 from PyO3/dependabot/github_actions/actions/cache-4

Bump actions/cache from 3 to 4
This commit is contained in:
David Hewitt 2024-01-23 23:24:37 +00:00 committed by GitHub
commit f449fc0fc1
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