Skip to content

Commit

Permalink
Try another strategy to cache.
Browse files Browse the repository at this point in the history
  • Loading branch information
DFINITYManu committed Aug 22, 2024
1 parent e76d0c8 commit f427b14
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/rollout-dashboard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,24 +25,24 @@ jobs:
- name: Cache Cargo stuff for faster execution
uses: actions/cache@v3
with:
key: cargo
key: cargo-home
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
- name: Cache target deps for faster execution
uses: actions/cache@v3
with:
key: target
path: |
target/debug/deps
- name: Set up Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Move backend files to source root
run: mv -f rollout-dashboard/server/* .
- name: Cache target deps for faster execution
uses: actions/cache@v3
with:
key: target-${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
path: |
target
- name: Security audit
uses: actions-rs/audit-check@v1
with:
Expand Down

0 comments on commit f427b14

Please sign in to comment.