2022-05-27 20:33:25 +00:00
|
|
|
name: Security audit
|
2023-02-24 17:43:00 +00:00
|
|
|
|
2022-05-27 20:33:25 +00:00
|
|
|
on:
|
|
|
|
push:
|
2023-02-24 17:43:00 +00:00
|
|
|
branches: [master]
|
2022-05-27 20:33:25 +00:00
|
|
|
paths:
|
|
|
|
- "**/Cargo.toml"
|
|
|
|
- "**/Cargo.lock"
|
2023-02-24 17:43:00 +00:00
|
|
|
pull_request:
|
|
|
|
branches: [master]
|
|
|
|
paths:
|
|
|
|
- "**/Cargo.toml"
|
|
|
|
- "**/Cargo.lock"
|
|
|
|
|
2022-05-27 20:33:25 +00:00
|
|
|
jobs:
|
|
|
|
security_audit:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- uses: actions-rs/audit-check@v1
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|