mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
Merge #454
454: Add periodic GHA job to run cargo audit r=korken89 a=AfoHT With the recent generic-array issue affecting heapless it seems wise to stay up to date with the latest advisories. Co-authored-by: Henrik Tjäder <henrik@grepit.se>
This commit is contained in:
commit
223f093a0e
2 changed files with 18 additions and 0 deletions
12
.github/workflows/audit.yaml
vendored
Normal file
12
.github/workflows/audit.yaml
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
name: Security audit
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
jobs:
|
||||
audit:
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: actions-rs/audit-check@v1
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
6
.github/workflows/properties/audit.properties.json
vendored
Normal file
6
.github/workflows/properties/audit.properties.json
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"name": "Audit",
|
||||
"description": "Cargo audit",
|
||||
"iconName": "rust",
|
||||
"categories": ["Rust"]
|
||||
}
|
Loading…
Reference in a new issue