Skip to content

audit

audit #63

Workflow file for this run

name: audit
on:
schedule:
- cron: '20 01 * * *' # Every day at 01:20 UTC
push:
branches:
- master
paths:
- "**/Cargo.lock"
- "**/Cargo.toml"
pull_request:
branches:
- master
paths:
- "**/Cargo.lock"
- "**/Cargo.toml"
jobs:
audit:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}