From d29f1ef13de41d5b317e7973818335131c63965e Mon Sep 17 00:00:00 2001 From: Abdulla Abdurakhmanov Date: Wed, 1 Jan 2025 14:55:49 +0100 Subject: [PATCH] chore: CI audit pipeline fix --- .github/workflows/security-audit.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/security-audit.yml b/.github/workflows/security-audit.yml index b842c4d..6ab9e99 100644 --- a/.github/workflows/security-audit.yml +++ b/.github/workflows/security-audit.yml @@ -17,5 +17,7 @@ jobs: - uses: dtolnay/rust-toolchain@stable with: toolchain: stable - components: rustfmt, clippy, audit - - run: cargo audit || true && cargo audit + components: rustfmt, clippy + - run: | + cargo install cargo-audit + cargo audit || true && cargo audit