From 989b69c6d0ed227ec1992a0116f8aa34adc26780 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Wed, 18 Mar 2026 17:09:59 +0100 Subject: [PATCH] Remove audit workflow It is not really useful. cg_clif is meant for development only and has relatively few dependencies. It has only ever caught an unmaintained crate about which nothing could be done on our end as cranelift-jit depended on it. --- .github/workflows/audit.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/workflows/audit.yml diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml deleted file mode 100644 index 95a4dcd3266d..000000000000 --- a/.github/workflows/audit.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Security audit -on: - workflow_dispatch: - schedule: - - cron: '0 10 * * 1' # every monday at 10:00 UTC -permissions: - issues: write - checks: write -jobs: - audit: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - run: | - sed -i 's/components.*/components = []/' rust-toolchain.toml - - uses: rustsec/audit-check@v2.0.0 - with: - token: ${{ secrets.GITHUB_TOKEN }}