mirror of
https://github.com/sile/hls_m3u8.git
synced 2024-11-22 15:21:01 +00:00
15 lines
287 B
YAML
15 lines
287 B
YAML
|
name: Security audit
|
||
|
on:
|
||
|
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 }}
|