1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-09-21 18:39:00 +00:00
starship/.github/workflows/security-audit.yml

21 lines
398 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 }}