From af1f0dd760d55e2bc684a946d12664422783643a Mon Sep 17 00:00:00 2001 From: molpopgen Date: Wed, 24 Nov 2021 09:42:56 -0800 Subject: [PATCH] Add security audit work flow. --- .github/workflows/security.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/security.yaml diff --git a/.github/workflows/security.yaml b/.github/workflows/security.yaml new file mode 100644 index 000000000..531c8f9b0 --- /dev/null +++ b/.github/workflows/security.yaml @@ -0,0 +1,17 @@ +name: Security audit + +on: + schedule: + - cron: '0 0 * * *' + +jobs: + audit: + runs-on: ubuntu-latest + steps: + - name: Checkout the Repository + uses: actions/checkout@v2 + + - name: Perform the security audit + uses: actions-rs/audit-check@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }}