From 7b2cc9dca210b912320e436d605af9f8f7cfb65f Mon Sep 17 00:00:00 2001 From: Fabian Boehm Date: Wed, 4 Dec 2024 18:42:20 +0100 Subject: [PATCH] CI: Disable cargo-deny again I am not a fan of CI tools that make the checks fail for reasons unrelated to the patch at hand. --- .github/workflows/rust_checks.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/rust_checks.yml b/.github/workflows/rust_checks.yml index 057e85363..c5bdbb917 100644 --- a/.github/workflows/rust_checks.yml +++ b/.github/workflows/rust_checks.yml @@ -32,8 +32,10 @@ jobs: # into automatic CI failure day, so we don't do that. run: cargo clippy --workspace --all-targets - cargo-deny: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: EmbarkStudios/cargo-deny-action@v1 + # Disabling for now because it also checks "advisories", + # making CI fail for reasons unrelated to the patch + # cargo-deny: + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v3 + # - uses: EmbarkStudios/cargo-deny-action@v1