From 921330694af466fad8786e00ee736c41b892019c Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Sun, 9 Feb 2020 18:39:07 +0000 Subject: [PATCH] Actions: Add workflow that runs cargo-audit daily Closes #44. --- .github/workflows/audit.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/audit.yml diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml new file mode 100644 index 0000000..b5b19b3 --- /dev/null +++ b/.github/workflows/audit.yml @@ -0,0 +1,14 @@ +name: Security audit + +on: + schedule: + - cron: '0 0 * * *' + +jobs: + audit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions-rs/audit-check@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }}