Skip to content

Commit

Permalink
ci: upd caching keys
Browse files Browse the repository at this point in the history
  • Loading branch information
NikitaMasych committed Oct 28, 2024
1 parent 0e30caa commit 70a804f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/noir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,25 +22,25 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('Cargo.lock') }}
key: ${{ runner.os }}-cargo-registry
restore-keys: |
${{ runner.os }}-cargo-registry-
${{ runner.os }}-cargo-registry
- name: Cache Cargo Index
uses: actions/cache@v4
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-index-${{ hashFiles('Cargo.lock') }}
key: ${{ runner.os }}-cargo-index
restore-keys: |
${{ runner.os }}-cargo-index-
${{ runner.os }}-cargo-index
- name: Cache Nargo Build
uses: actions/cache@v4
with:
path: ~/.nargo
key: ${{ runner.os }}-nargo-${{ hashFiles('Cargo.lock', 'noirup') }}
key: ${{ runner.os }}-nargo
restore-keys: |
${{ runner.os }}-nargo-
${{ runner.os }}-nargo
- name: Create `.nargo/bin` directory
shell: bash
Expand Down

0 comments on commit 70a804f

Please sign in to comment.