From 4e5b8ee2b51dac0972cb15eb9762c6d4e0bf6321 Mon Sep 17 00:00:00 2001 From: n14little Date: Mon, 11 May 2020 12:19:03 -0500 Subject: [PATCH] run security audit daily at midnight. (#391) * run security audit daily at midnight. * add new line to end of security_audit.yml --- .github/workflows/security_audit.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/security_audit.yml diff --git a/.github/workflows/security_audit.yml b/.github/workflows/security_audit.yml new file mode 100644 index 0000000000..5b62966da5 --- /dev/null +++ b/.github/workflows/security_audit.yml @@ -0,0 +1,12 @@ +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 }}