Delete .github/workflows/security-audit.yml
Some checks failed
CI / Rust checks (push) Has been cancelled

This commit is contained in:
2025-03-01 21:23:48 +00:00
parent ae7111ac33
commit 3875ee994f

View File

@@ -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 }}