From 7a650f248819599eb2c160d05699f713ec8993c9 Mon Sep 17 00:00:00 2001 From: Martin Lablans Date: Sun, 20 Nov 2022 09:16:33 +0000 Subject: [PATCH] Add security check with cargo audit --- .github/workflows/rust_security.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/rust_security.yml diff --git a/.github/workflows/rust_security.yml b/.github/workflows/rust_security.yml new file mode 100644 index 00000000..59f1ff06 --- /dev/null +++ b/.github/workflows/rust_security.yml @@ -0,0 +1,11 @@ +on: + schedule: + - cron: '0 3 * * 1' +jobs: + audit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions-rs/audit-check@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file