Skip to content

Security audit

Security audit #652

Workflow file for this run

name: Security audit
on:
pull_request:
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
schedule:
- cron: "0 0 * * *"
jobs:
security_audit:
strategy:
fail-fast: false
matrix:
info:
- {
os: "ubuntu-latest",
target: "x86_64-unknown-linux-gnu",
cross: false,
}
runs-on: ${{ matrix.info.os }}
steps:
- uses: actions/checkout@v4
- name: Run audit action to view any security issues
uses: actions-rust-lang/audit@v1
with:
TOKEN: ${{ secrets.GITHUB_TOKEN }}
ignore: "RUSTSEC-2023-0071"