From ab6c2af41e001336d21783c5f318ad25a5bb56ea Mon Sep 17 00:00:00 2001 From: Owen Quinlan Date: Wed, 3 Jul 2024 15:47:13 +1000 Subject: [PATCH] Automatically check for cargo security issues --- .github/workflows/cargo-audit.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/cargo-audit.yml diff --git a/.github/workflows/cargo-audit.yml b/.github/workflows/cargo-audit.yml new file mode 100644 index 0000000..5ca1933 --- /dev/null +++ b/.github/workflows/cargo-audit.yml @@ -0,0 +1,14 @@ +name: Security audit +on: + push: + paths: + - '**/Cargo.toml' + - '**/Cargo.lock' +jobs: + security_audit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: rustsec/audit-check@v1.4.1 + with: + token: ${{ secrets.GITHUB_TOKEN }}