Bump version to 2.0.426 by Chef Expeditor #6424
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
| # https://github.com/actions-rs/audit-check | |
| name: Rust Cargo Audit | |
| on: | |
| push: | |
| jobs: | |
| security_audit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@1.91.1 | |
| id: toolchain | |
| - run: rustup override set ${{steps.toolchain.outputs.name}} | |
| - uses: ClementTsang/cargo-action@v0.0.7 | |
| with: | |
| command: install | |
| args: cargo-audit | |
| - uses: ClementTsang/cargo-action@v0.0.7 | |
| with: | |
| command: audit |