Skip to content

Commit

Permalink
[workflow] actions/cache@v2 => actions/cache@v3
Browse files Browse the repository at this point in the history
  • Loading branch information
hayatoito committed Jan 31, 2023
1 parent edb369e commit ebcc3ef
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: rustup update stable
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- run: rustup component add rustfmt
- run: rustup component add clippy
Expand Down

0 comments on commit ebcc3ef

Please sign in to comment.