This is the Rust version of the discord bot created for FBT Heaven
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Automatically check for cargo security issues

authored by

Owen Quinlan and committed by
GitHub
ab6c2af4 18cba1fb

+14
+14
.github/workflows/cargo-audit.yml
··· 1 + name: Security audit 2 + on: 3 + push: 4 + paths: 5 + - '**/Cargo.toml' 6 + - '**/Cargo.lock' 7 + jobs: 8 + security_audit: 9 + runs-on: ubuntu-latest 10 + steps: 11 + - uses: actions/checkout@v3 12 + - uses: rustsec/audit-check@v1.4.1 13 + with: 14 + token: ${{ secrets.GITHUB_TOKEN }}