mirror of
https://github.com/starship/starship
synced 2024-11-02 04:08:02 +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:
parent
4f481e0a7d
commit
e3a2a5d748
1 changed files with 4 additions and 12 deletions
16
.github/workflows/security_audit.yml
vendored
16
.github/workflows/security_audit.yml
vendored
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue