summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorThomas O'Donnell <andytom@users.noreply.github.com>2020-05-25 16:04:26 +0200
committerGitHub <noreply@github.com>2020-05-25 16:04:26 +0200
commite3a2a5d74804d058d0deb099533f2949bc0b9bdc (patch)
tree2fe1cc648ee4df06895aa4ad5e5730b88b379402 /.github
parent4f481e0a7d97a2428bc2cc4587f9c7c4b7865bf5 (diff)
Fix security audit github action (#1256)
This fixes the Security Audit github workflow by consolidating the two separte yaml documents that Github Actions didn't like into a single workflow with multiple triggers. I also added a trigger for PRs as well as pushes.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/security_audit.yml16
1 files changed, 4 insertions, 12 deletions
diff --git a/.github/workflows/security_audit.yml b/.github/workflows/security_audit.yml
index 0e679b9fe..9ab06e92a 100644
--- a/.github/workflows/security_audit.yml
+++ b/.github/workflows/security_audit.yml
@@ -1,22 +1,14 @@
---
name: Security audit
on:
+ pull_request:
+ paths:
+ - '**/Cargo.toml'
+ - '**/Cargo.lock'
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
-jobs:
- security_audit:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v1
- - uses: actions-rs/audit-check@v1
- with:
- token: ${{ secrets.GITHUB_TOKEN }}
-
----
-name: Security audit [Daily]
-on:
schedule:
- cron: '0 0 * * *'
jobs: