Skip to content

Commit

Permalink
Bump actions/cache from 3 to 4
Browse files Browse the repository at this point in the history
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](actions/cache@v3...v4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jan 18, 2024
1 parent ed4d14b commit fdcde08
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
run: rustup target add ${{ matrix.target }} --toolchain stable

- name: Cache cargo registry
uses: actions/cache@v3
uses: actions/cache@v4
continue-on-error: true
with:
path: ~/.cargo/registry/cache
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
run: rustup target add ${{ matrix.target }} --toolchain stable

- name: Cache cargo registry
uses: actions/cache@v3
uses: actions/cache@v4
continue-on-error: true
with:
path: ~/.cargo/registry/cache
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
run: rustup target add ${{ matrix.target }} --toolchain stable

- name: Cache cargo registry
uses: actions/cache@v3
uses: actions/cache@v4
continue-on-error: true
with:
path: ~/.cargo/registry/cache
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
run: rustup target add ${{ env.RUST_TARGET }} --toolchain stable

- name: Cache cargo registry
uses: actions/cache@v3
uses: actions/cache@v4
continue-on-error: true
with:
path: ~/.cargo/registry/cache
Expand Down Expand Up @@ -244,7 +244,7 @@ jobs:
run: rustup target add ${{ matrix.target }} --toolchain stable

- name: Cache cargo registry
uses: actions/cache@v3
uses: actions/cache@v4
continue-on-error: true
with:
path: ~/.cargo/registry/cache
Expand Down Expand Up @@ -315,7 +315,7 @@ jobs:
echo "RUST_TARGET=x86_64-unknown-linux-gnu" >> $GITHUB_ENV
- name: Cache cargo registry
uses: actions/cache@v3
uses: actions/cache@v4
continue-on-error: true
with:
path: ~/.cargo/registry/cache
Expand Down Expand Up @@ -390,7 +390,7 @@ jobs:
echo "RUST_TARGET=aarch64-unknown-linux-gnu" >> $GITHUB_ENV
- name: Cache cargo registry
uses: actions/cache@v3
uses: actions/cache@v4
continue-on-error: true
with:
path: ~/.cargo/registry/cache
Expand Down Expand Up @@ -465,7 +465,7 @@ jobs:
echo "RUST_TARGET=x86_64-apple-darwin" >> $GITHUB_ENV
- name: Cache cargo registry
uses: actions/cache@v3
uses: actions/cache@v4
continue-on-error: true
with:
path: ~/.cargo/registry/cache
Expand Down

0 comments on commit fdcde08

Please sign in to comment.