rtic/.github/workflows/audit.yaml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 17: cannot unmarshal !!seq into string
dependabot[bot] fbd472ec06 chore(deps): bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-12-03 19:43:29 +00:00

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@v6
- 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"]