diff options
Diffstat (limited to '.github/workflows/security.yml')
-rw-r--r-- | .github/workflows/security.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml new file mode 100644 index 0000000..142c06e --- /dev/null +++ b/.github/workflows/security.yml @@ -0,0 +1,18 @@ +name: Security Audits + +on: + schedule: + # Every Saturday at 1PM UTC (6AM PST) + chron: "0 13 * * 6" + pull_request: + branches: [ main ] + +jobs: + security-audit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Security audit + uses: actions-rs/audit-check@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} |