]> git.lizzy.rs Git - rust.git/commitdiff
Completely remove cargo audit
authorAleksey Kladov <aleksey.kladov@gmail.com>
Wed, 12 Aug 2020 13:54:39 +0000 (15:54 +0200)
committerAleksey Kladov <aleksey.kladov@gmail.com>
Wed, 12 Aug 2020 13:54:39 +0000 (15:54 +0200)
My current feeling is that the build maintenance friction it creates
is not proportional to the benefits it provides.

We are pretty frugal with the set of Rust dependencies, and our
security model is "we run build.rs and proc macros", so it doesn't
seem like cargo audit could help us much.

.github/workflows/ci.yaml

index f977c88bee70a3743bee3551cbda3579b9577ba7..f46fb8fecc2b23a9ae4499b8982dcf63eb47b553 100644 (file)
@@ -16,20 +16,6 @@ env:
   RUSTUP_MAX_RETRIES: 10
 
 jobs:
-  # rust-audit:
-  #   name: Audit Rust vulnerabilities
-  #   runs-on: ubuntu-latest
-  #   steps:
-  #   - name: Checkout repository
-  #     uses: actions/checkout@v2
-
-  #   - uses: actions-rs/install@v0.1
-  #     with:
-  #       crate: cargo-audit
-  #       use-tool-cache: true
-
-  #   - run: cargo audit
-
   rust:
     name: Rust
     runs-on: ${{ matrix.os }}