Commit aa1dccb397bbcd779654821ae5f9edcfe81821d7

Cléo Rebert 2022-01-13T17:41:52

Create security.yml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml
new file mode 100644
index 0000000..8fd8458
--- /dev/null
+++ b/.github/workflows/security.yml
@@ -0,0 +1,12 @@
+name: Security audit
+on:
+  schedule:
+    - cron: '0 0 * * *'
+jobs:
+  audit:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@v2
+      - uses: actions-rs/audit-check@v1
+        with:
+          token: ${{ secrets.GITHUB_TOKEN }}