mirror of
https://github.com/fluencelabs/marine.git
synced 2024-12-12 14:55:32 +00:00
17 lines
309 B
YAML
17 lines
309 B
YAML
|
name: Security audit
|
||
|
on:
|
||
|
push:
|
||
|
paths:
|
||
|
- '**/Cargo.toml'
|
||
|
- '**/Cargo.lock'
|
||
|
workflow_dispatch:
|
||
|
jobs:
|
||
|
security_audit:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v1
|
||
|
- uses: actions-rs/audit-check@v1
|
||
|
with:
|
||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||
|
|