summaryrefslogtreecommitdiffstats
path: root/.github/workflows/audit.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/audit.yml')
-rw-r--r--.github/workflows/audit.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml
new file mode 100644
index 00000000..a901a0fd
--- /dev/null
+++ b/.github/workflows/audit.yml
@@ -0,0 +1,22 @@
+name: Security Audit
+
+on:
+ push:
+ branches:
+ - master
+ paths:
+ - '**/Cargo.toml'
+ schedule:
+ - cron: '0 2 * * *' # run at 2 AM UTC
+
+jobs:
+ security-audit:
+ runs-on: ubuntu-latest
+ if: "!contains(github.event.head_commit.message, 'ci skip')"
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Audit Check
+ uses: actions-rs/audit-check@v1
+ with:
+ token: ${{ secrets.GITHUB_TOKEN }}