summaryrefslogtreecommitdiffstats
path: root/.github/workflows/pr-audit.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/pr-audit.yml')
-rw-r--r--.github/workflows/pr-audit.yml32
1 files changed, 32 insertions, 0 deletions
diff --git a/.github/workflows/pr-audit.yml b/.github/workflows/pr-audit.yml
new file mode 100644
index 00000000..26c0ee2f
--- /dev/null
+++ b/.github/workflows/pr-audit.yml
@@ -0,0 +1,32 @@
+name: Pull Request Security Audit
+
+on:
+ push:
+ paths:
+ - '**/Cargo.toml'
+ pull_request:
+ paths:
+ - '**/Cargo.toml'
+
+jobs:
+ security-audit:
+ runs-on: ubuntu-latest
+ if: "!contains(github.event.head_commit.message, 'ci skip')"
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Install cargo-audit
+ uses: actions-rs/cargo@v1
+ with:
+ command: install
+ args: cargo-audit
+
+ - name: Generate lockfile
+ uses: actions-rs/cargo@v1
+ with:
+ command: generate-lockfile
+
+ - name: Audit dependencies
+ uses: actions-rs/cargo@v1
+ with:
+ command: audit