diff options
| author | Fuwn <[email protected]> | 2021-05-20 02:58:06 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-20 02:58:06 -0700 |
| commit | b83fd13f6dc1a9575439e7d503a562286306aad9 (patch) | |
| tree | 8968287abf068637edb5736a4d09a4bf84f2d271 /.github/workflows/audit.yml | |
| parent | build: mess with cross-compiling settings (diff) | |
| download | whirl-b83fd13f6dc1a9575439e7d503a562286306aad9.tar.xz whirl-b83fd13f6dc1a9575439e7d503a562286306aad9.zip | |
ci(actions): security audit action
Diffstat (limited to '.github/workflows/audit.yml')
| -rw-r--r-- | .github/workflows/audit.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml new file mode 100644 index 0000000..2f72d2d --- /dev/null +++ b/.github/workflows/audit.yml @@ -0,0 +1,18 @@ +name: Audit 🩺 + + +on: + schedule: + - cron: "0 0 * * *" + +jobs: + check: + runs-on: ubuntu-20.04 + steps: + - name: Checkout 🛒 + uses: actions/checkout@v2 + + - name: Audit 🩺 + uses: actions-rs/audit-check@v1 + with: + token: ${{ github.token }} |