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.
This commit is contained in:
Thomas O'Donnell 2020-05-25 16:04:26 +02:00 committed by GitHub
parent 4f481e0a7d
commit e3a2a5d748
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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: