Bump version to 1.6.1235 by Chef Expeditor #3301
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
# https://github.com/actions-rs/audit-check | |
name: Rust Cargo Audit | |
on: | |
push: | |
jobs: | |
security_audit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/[email protected] | |
id: toolchain | |
- run: rustup override set ${{steps.toolchain.outputs.name}} | |
- uses: ClementTsang/[email protected] | |
with: | |
command: install | |
args: cargo-audit | |
- uses: ClementTsang/[email protected] | |
with: | |
command: audit |