From 45fb5a1bb8faffa877455b1eb53ea50706f1b488 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20B=C3=BChler?= Date: Fri, 18 Oct 2024 09:30:56 +0200 Subject: [PATCH] chore: remove security check --- .github/workflows/security-check.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/security-check.yml diff --git a/.github/workflows/security-check.yml b/.github/workflows/security-check.yml deleted file mode 100644 index 67f7b5b..0000000 --- a/.github/workflows/security-check.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Security Audit - -on: - push: - paths: - - '**/Cargo.toml' - - '**/Cargo.lock' - schedule: - - cron: '0 0 * * *' - -jobs: - security_audit: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: rustsec/audit-check@v2.0.0 - with: - token: ${{ secrets.GITHUB_TOKEN }} - ignore: RUSTSEC-2020-0071, RUSTSEC-2023-0071