Merge pull request #10348 from habitat-sh/dependabot/cargo/libc-0.2.185 #7188
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 |