Adds structure to support lading subcommands, 'run' is an alias for the current root cmd #4503
Workflow file for this run
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 | |
| # The clippy-check job requires this permission to properly surface failures | |
| permissions: | |
| checks: write | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - '**/Cargo.toml' | |
| - '**/Cargo.lock' | |
| jobs: | |
| security_audit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - uses: actions-rust-lang/audit@579aeab71c3eeeeae955a8e3c6136bfc93915987 # v1.2.4 | |
| with: | |
| TOKEN: ${{ secrets.GITHUB_TOKEN }} |