From d422db32ea627a01a9816d405a7f89ffbddec141 Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Wed, 1 Jun 2022 21:54:44 +0000 Subject: [PATCH] temporarily remove cargo audit check --- .github/workflows/security.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/security.yml diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml deleted file mode 100644 index 60639fbba..000000000 --- a/.github/workflows/security.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: security - -on: - schedule: - - cron: '0 0 * * *' - push: - paths: - - '**/Cargo.toml' - - '**/Cargo.lock' - -jobs: - audit: - runs-on: ubuntu-latest - permissions: write-all - name: "Audit Dependencies" - steps: - - uses: actions/checkout@v2 - - uses: actions-rs/audit-check@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }}