diff options
| author | Henrik Tjäder <henrik@tjaders.com> | 2023-02-24 21:19:11 +0100 |
|---|---|---|
| committer | Henrik Tjäder <henrik@tjaders.com> | 2023-03-01 00:35:24 +0100 |
| commit | 032316855d8b55fc572ab7fcbd1de7ba394b2fd1 (patch) | |
| tree | e5eadd11550912b56b3b4b6c20375b55204fcbef /.github/workflows/build.yml | |
| parent | 789ddb1be163ff2e500caa9307e967535a20ef2f (diff) | |
CI: install-action without shorthand
Diffstat (limited to '.github/workflows/build.yml')
| -rw-r--r-- | .github/workflows/build.yml | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 262ce71..e16e460 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -173,7 +173,9 @@ jobs: # Use precompiled binutils - name: Install cargo-binutils - uses: taiki-e/install-action@cargo-binutils + uses: taiki-e/install-action@v2 + with: + tool: cargo-binutils - name: Cache Dependencies uses: Swatinem/rust-cache@v2 @@ -327,7 +329,9 @@ jobs: uses: actions/checkout@v3 - name: Install lychee - uses: taiki-e/install-action@lychee + uses: taiki-e/install-action@v2 + with: + tool: lychee - name: Remove cargo-config run: rm -f .cargo/config @@ -358,10 +362,14 @@ jobs: uses: actions/checkout@v3 - name: Install lychee - uses: taiki-e/install-action@lychee + uses: taiki-e/install-action@v2 + with: + tool: lychee - name: Install mdbook-mermaid - uses: taiki-e/install-action@mdbook-mermaid + uses: taiki-e/install-action@v2 + with: + tool: mdbook-mermaid - name: mdBook Action uses: peaceiris/actions-mdbook@v1 @@ -444,11 +452,15 @@ jobs: # - uses: actions/checkout@v3 # # - name: Install lychee -# uses: taiki-e/install-action@lychee +# uses: taiki-e/install-action@v2 +# with: +# tool: lychee # # - name: Install mdbook-mermaid -# uses: taiki-e/install-action@mdbook-mermaid -# +# uses: taiki-e/install-action@v2 +# with: +# tool: mdbook-mermaid +# # - name: mdBook Action # uses: peaceiris/actions-mdbook@v1 # with: |
