Unify the CLI, PBS, and Signer Binaries into One (#425) #1004
This file contains hidden or 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: | |
| pull_request: | |
| paths: [Cargo.lock] | |
| push: | |
| branches: [main] | |
| paths: [Cargo.lock] | |
| schedule: | |
| - cron: '0 0 * * *' | |
| permissions: | |
| issues: write | |
| checks: write | |
| pull-requests: read | |
| contents: read | |
| jobs: | |
| security_audit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions-rs/audit-check@v1.2.0 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} |