From 327b859caa18dea8c96dd77410a83737a123ac2b Mon Sep 17 00:00:00 2001 From: Cyril Levis Date: Tue, 23 Jul 2024 11:22:36 +0200 Subject: [PATCH] chore: wip --- .github/workflows/audit-check.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/audit-check.yml diff --git a/.github/workflows/audit-check.yml b/.github/workflows/audit-check.yml new file mode 100644 index 0000000..e4a6973 --- /dev/null +++ b/.github/workflows/audit-check.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@v4 + - uses: rustsec/audit-check@v1.4.1 + with: + token: ${{ secrets.GITHUB_TOKEN }}