Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Security audit

Security audit #301

Workflow file for this run

name: Security audit
on:
push:
paths:
- '**/Cargo.toml'
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
security_audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate Cargo.lock
run: cargo generate-lockfile
- uses: rustsec/audit-check@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}