Skip to content

Commit

Permalink
Update actions/cache action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and shssoichiro committed Jan 30, 2024
1 parent 3c3a26f commit 4b5c8f7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/rav1e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,15 +152,15 @@ jobs:
run: |
cargo --version > Cargo.version
- name: Cache cargo registry
uses: actions/cache@v3
uses: actions/cache@v4
continue-on-error: true
with:
path: ~/.cargo/registry/cache
key: ${{ runner.os }}-${{ matrix.conf }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-${{ matrix.conf }}-cargo-registry-
- name: Cache sccache output
uses: actions/cache@v3
uses: actions/cache@v4
continue-on-error: true
with:
path: /home/runner/.cache/sccache
Expand Down Expand Up @@ -328,15 +328,15 @@ jobs:
run: |
cargo --version > Cargo.version
- name: Cache cargo registry
uses: actions/cache@v3
uses: actions/cache@v4
continue-on-error: true
with:
path: ~/.cargo/registry/cache
key: ${{ runner.os }}-${{ matrix.conf }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-${{ matrix.conf }}-cargo-registry-
- name: Cache sccache output
uses: actions/cache@v3
uses: actions/cache@v4
continue-on-error: true
with:
path: /Users/runner/Library/Caches/Mozilla.sccache
Expand Down Expand Up @@ -408,15 +408,15 @@ jobs:
run: |
cargo --version > Cargo.version
- name: Cache cargo registry
uses: actions/cache@v3
uses: actions/cache@v4
continue-on-error: true
with:
path: ~/.cargo/registry/cache
key: ${{ runner.os }}-${{ matrix.conf }}-${{ matrix.target }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-${{ matrix.conf }}-${{ matrix.target }}-cargo-registry-
- name: Cache sccache output
uses: actions/cache@v3
uses: actions/cache@v4
continue-on-error: true
with:
path: C:\sccache
Expand Down

0 comments on commit 4b5c8f7

Please sign in to comment.