From 44fa1c6babc4e4e5a363b50826b3fc5842232dec Mon Sep 17 00:00:00 2001 From: orhun Date: Tue, 27 Jul 2021 13:46:25 +0300 Subject: [PATCH] chore(audit): add security audit workflow --- .github/workflows/audit.yml | 12 ++++++++++++ 1 file changed, 12 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..78ab242 --- /dev/null +++ b/.github/workflows/audit.yml @@ -0,0 +1,12 @@ +name: Security Audit +on: + schedule: + - cron: '0 0 * * 0' +jobs: + audit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions-rs/audit-check@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }}