diff options
| author | bors <bors@rust-lang.org> | 2022-10-16 12:45:40 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-10-16 12:45:40 +0000 |
| commit | 1c294d1de2ce2d884191451064bda46952cfb87b (patch) | |
| tree | 59e719094f0bc75c8f5fd7481ba25e8fd70adc89 | |
| parent | afca9dc684cec625ea9e960248e0764abcd30a01 (diff) | |
| parent | f8832a41a90e9eeb4633feabce28031ac7e10a77 (diff) | |
| download | rust-1c294d1de2ce2d884191451064bda46952cfb87b.tar.gz rust-1c294d1de2ce2d884191451064bda46952cfb87b.zip | |
Auto merge of #2596 - RalfJung:ci, r=RalfJung
fix caching check in CI
| -rw-r--r-- | src/tools/miri/.github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/miri/.github/workflows/ci.yml b/src/tools/miri/.github/workflows/ci.yml index e6c6e8bf950..659c51f77e6 100644 --- a/src/tools/miri/.github/workflows/ci.yml +++ b/src/tools/miri/.github/workflows/ci.yml @@ -62,7 +62,7 @@ jobs: restore-keys: ${{ runner.os }}-cargo - name: Install rustup-toolchain-install-master - if: ${{ steps.cache-npm.outputs.cache-hit != 'true' }} + if: ${{ steps.cache.outputs.cache-hit != 'true' }} shell: bash run: | cargo install -f rustup-toolchain-install-master @@ -114,7 +114,7 @@ jobs: restore-keys: ${{ runner.os }}-cargo - name: Install rustup-toolchain-install-master - if: ${{ steps.cache-npm.outputs.cache-hit != 'true' }} + if: ${{ steps.cache.outputs.cache-hit != 'true' }} shell: bash run: | cargo install -f rustup-toolchain-install-master |
