mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-16 21:05:35 +01:00
17 lines
545 B
YAML
17 lines
545 B
YAML
name: Security audit
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
workflow_dispatch:
|
|
jobs:
|
|
security_audit:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- run: cargo generate-lockfile # create Cargo.lock
|
|
- uses: rustsec/audit-check@v2.0.0
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
# RUSTSEC-2024-0436: Paste (which is mature/stable) only pulled in by examples/
|
|
# dependencies such as esp-hal, riscv, rp2040-hal, stm32f3xx-hal etc.
|
|
ignore: ["RUSTSEC-2024-0436"]
|