From 3875ee994f771c2493d2c204446d776e549e7ca2 Mon Sep 17 00:00:00 2001 From: Avii Date: Sat, 1 Mar 2025 21:23:48 +0000 Subject: [PATCH] Delete .github/workflows/security-audit.yml --- .github/workflows/security-audit.yml | 30 ---------------------------- 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/security-audit.yml diff --git a/.github/workflows/security-audit.yml b/.github/workflows/security-audit.yml deleted file mode 100644 index 79b77f5..0000000 --- a/.github/workflows/security-audit.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Security -on: - push: - branches: - - main - paths: - - "**/Cargo.toml" - - "**/Cargo.lock" - pull_request: - branches: - - main - paths: - - "**/Cargo.toml" - - "**/Cargo.lock" - schedule: - - cron: "0 0 * * *" -jobs: - security_audit: - name: Audit - runs-on: windows-latest - steps: - - uses: actions/checkout@v3 - - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true - - uses: actions-rs/audit-check@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }}