Skip to content

Merge pull request #115 from c12i/feat/update-rust-edition #75

Merge pull request #115 from c12i/feat/update-rust-edition

Merge pull request #115 from c12i/feat/update-rust-edition #75

Workflow file for this run

name: Security audit
on:
push:
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
security_audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install stable
uses: dtolnay/rust-toolchain@stable
- name: Install cargo audit
run: |
cargo install cargo-audit
- name: Run cargo audit
run: cargo audit --file .cargo/audit.toml