From bf8c782496330c57a55697db0e4a4f78dcede531 Mon Sep 17 00:00:00 2001 From: Bernard Kolobara Date: Mon, 18 Mar 2024 09:19:41 +0100 Subject: [PATCH] Delete cargo-audit.yml It's hitting some kind of rate limiter, and I'm getting tired of the daily emails about failed audits. --- .github/workflows/cargo-audit.yml | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 .github/workflows/cargo-audit.yml diff --git a/.github/workflows/cargo-audit.yml b/.github/workflows/cargo-audit.yml deleted file mode 100644 index e5fe667..0000000 --- a/.github/workflows/cargo-audit.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: cargo audit -on: - schedule: - - cron: '0 0 * * *' - -jobs: - audit: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: rustsec/audit-check@v1.4.1 - with: - token: ${{ secrets.GITHUB_TOKEN }} -