diff --git a/.github/workflows/cargo-audit.yaml b/.github/workflows/cargo-audit.yaml new file mode 100644 index 0000000000..c6ca84ea3e --- /dev/null +++ b/.github/workflows/cargo-audit.yaml @@ -0,0 +1,19 @@ +name: Cargo Audit + +on: + push: + paths: + - '.github/workflows/cargo-audit.yaml' + - '**/Cargo.toml' + - '**/Cargo.lock' + schedule: + - cron: '0 0 * * *' + workflow_dispatch: + +jobs: + audit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions-rust-lang/audit@v1 + name: Audit Rust Dependencies