feat: add an extensible CLI to Cot-powered projects #311
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Security audit | |
on: | |
push: | |
paths: | |
- "**/Cargo.toml" | |
- "**/Cargo.lock" | |
- ".github/workflows/audit.yml" | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
security_audit: | |
name: Audit check | |
runs-on: ubuntu-latest | |
permissions: | |
checks: write | |
contents: read | |
issues: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: rustsec/audit-check@v2.0.0 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |