1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-09-29 13:39:10 +00:00
starship/.github/workflows/security_audit.yml

22 lines
402 B
YAML
Raw Normal View History

---
name: Security audit
on:
pull_request:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
schedule:
- cron: '0 0 * * *'
jobs:
security_audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}