1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2025-02-03 12:38:37 +00:00

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 name: Security audit
on: on:
pull_request:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
push: push:
paths: paths:
- '**/Cargo.toml' - '**/Cargo.toml'
- '**/Cargo.lock' - '**/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: schedule:
- cron: '0 0 * * *' - cron: '0 0 * * *'
jobs: jobs: