diff options
| author | Fuwn <[email protected]> | 2021-05-20 02:58:06 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-20 02:58:06 +0000 |
| commit | 14a46e5137c4deb4a5139de61198ec725d2bda92 (patch) | |
| tree | 2989c6ca4119901b86552568233cd84d45e20d36 /.github/workflows/audit.yml | |
| parent | build: mess with cross-compiling settings (diff) | |
| download | whirl-14a46e5137c4deb4a5139de61198ec725d2bda92.tar.xz whirl-14a46e5137c4deb4a5139de61198ec725d2bda92.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 }} |