From 12259b5c717ddc09193d2a19fc0e20fc0a9254fa Mon Sep 17 00:00:00 2001 From: Jon C Date: Wed, 15 Nov 2023 13:45:49 +0100 Subject: [PATCH] Use cargo install directly instead of action --- .github/workflows/pull-request.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 087cc93b6bd..a25ad8df500 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -84,10 +84,7 @@ jobs: toolchain: ${{ env.RUST_STABLE }} - name: Install Cargo Audit - uses: actions-rs/install@v0.1 - with: - crate: cargo-audit - version: 0.17.6 + run: cargo install cargo-audit --version 0.17.6 - name: Run Cargo Audit run: ./ci/do-audit.sh