Bump serde_json from 1.0.135 to 1.0.137 #3540
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/rust-toolchain@1.81.0 | |
id: toolchain | |
- run: rustup override set ${{steps.toolchain.outputs.name}} | |
- uses: ClementTsang/cargo-action@v0.0.6 | |
with: | |
command: install | |
args: cargo-audit | |
- uses: ClementTsang/cargo-action@v0.0.6 | |
with: | |
command: audit |