Skip to content

Commit

Permalink
Fix typo in the index action
Browse files Browse the repository at this point in the history
This resulted in the index being stored at
cargo-index-v2- and used from that key in subsequent
runs.
  • Loading branch information
Mikhail Zabaluev committed Jun 12, 2020
1 parent f92d582 commit b400b9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
uses: actions/cache@v2
with:
path: ~/.cargo/registry/index
key: cargo-index-v2-${{ needs.update-deps.outputs.crates-io-index-head }}
key: cargo-index-v2-${{ needs.update_deps.outputs.crates-io-index-head }}

- name: Restore dependency crates
uses: actions/cache@v2
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
uses: actions/cache@v2
with:
path: ~/.cargo/registry/index
key: cargo-index-v2-${{ needs.update-deps.outputs.crates-io-index-head }}
key: cargo-index-v2-${{ needs.update_deps.outputs.crates-io-index-head }}

- name: Restore dependency crates
uses: actions/cache@v2
Expand Down

0 comments on commit b400b9d

Please sign in to comment.