-
-
Notifications
You must be signed in to change notification settings - Fork 90
27 lines (26 loc) · 622 Bytes
/
audit.yaml
File metadata and controls
27 lines (26 loc) · 622 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: Security audit
on:
pull_request:
paths:
- 'Cargo.toml'
- '**/Cargo.toml'
- 'Cargo.lock'
push:
branches:
- master
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
permissions: read-all
jobs:
security_audit:
name: Rustsec Audit
runs-on: ubuntu-latest
permissions:
# Allow the action to post about found problems
issues: write
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
persist-credentials: false
- uses: actions-rust-lang/audit@72c09e02f132669d52284a3323acdb503cfc1a24 # v1