Skip to content

Commit 1c3f05c

Browse files
authored
Merge pull request #456 from notgull/install-action
Use install-action to install cargo-dinghy
2 parents 3dcdc55 + 47824ca commit 1c3f05c

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -519,17 +519,10 @@ jobs:
519519
path: ${{ env.CARGO_CACHE_PATH }}
520520
key: cargo-${{ github.job }}-${{ matrix.name }}-${{ hashFiles('**/Cargo.lock') }}
521521

522-
- name: Cache cargo-dinghy
523-
id: dinghy-cache
524-
uses: actions/cache@v3
525-
with:
526-
path: ~/.cargo/bin/cargo-dinghy
527-
# Change this key if we update the required cargo-dinghy version
528-
key: cargo-dinghy-${{ github.job }}-${{ matrix.name }}-v0-6-0
529-
530522
- name: Install cargo-dinghy
531-
if: ${{ steps.dinghy-cache.outputs.cache-hit != 'true' }}
532-
run: cargo install cargo-dinghy --version=^0.6.0
523+
uses: taiki-e/install-action@v2
524+
with:
525+
533526

534527
- name: Launch XCode Simulator and prepare Dinghy
535528
# Note that we're not testing all configurations with dinghy, since that

0 commit comments

Comments
 (0)