aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/audit.yml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-20 02:58:06 -0700
committerFuwn <[email protected]>2021-05-20 02:58:06 -0700
commitb83fd13f6dc1a9575439e7d503a562286306aad9 (patch)
tree8968287abf068637edb5736a4d09a4bf84f2d271 /.github/workflows/audit.yml
parentbuild: mess with cross-compiling settings (diff)
downloadwhirl-b83fd13f6dc1a9575439e7d503a562286306aad9.tar.xz
whirl-b83fd13f6dc1a9575439e7d503a562286306aad9.zip
ci(actions): security audit action
Diffstat (limited to '.github/workflows/audit.yml')
-rw-r--r--.github/workflows/audit.yml18
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 }}