diff --git a/.github/workflows/security-audit.yml b/.github/workflows/security-audit.yml index fced3d4..3d4d639 100644 --- a/.github/workflows/security-audit.yml +++ b/.github/workflows/security-audit.yml @@ -16,21 +16,14 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Install Rust toolchain - uses: dtolnay/rust-toolchain@stable - - name: Install cargo-audit - uses: taiki-e/cache-cargo-install-action@v2 - with: - tool: cargo-audit + uses: taiki-e/install-action@cargo-audit - name: Run cargo audit run: cargo audit --file src-tauri/Cargo.lock - name: Install cargo-deny - uses: taiki-e/cache-cargo-install-action@v2 - with: - tool: cargo-deny + uses: taiki-e/install-action@cargo-deny - name: Run cargo deny run: cargo deny --manifest-path src-tauri/Cargo.toml check