From 3f42b6178f2039ffe6832dfc4cc32821595c612a Mon Sep 17 00:00:00 2001 From: Artem Vorotnikov Date: Sat, 8 Aug 2020 08:38:20 +0300 Subject: [PATCH] Remove security audit workflow for now --- .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 4c6b7e224..000000000 --- a/.github/workflows/audit.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Security audit -on: - pull_request: - paths: Cargo.lock - schedule: - - cron: '0 0 * * *' -jobs: - security_audit: - runs-on: ubuntu-latest - steps: - - name: Checkout sources - uses: actions/checkout@v1 - with: - fetch-depth: 50 - - name: Run cargo audit - uses: actions-rs/audit-check@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }}