From 032316855d8b55fc572ab7fcbd1de7ba394b2fd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= Date: Fri, 24 Feb 2023 21:19:11 +0100 Subject: [PATCH] CI: install-action without shorthand --- .github/workflows/build.yml | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 262ce71d81..e16e460f89 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: