Skip to content

Security Audit

Security Audit #8

Workflow file for this run

name: Security Audit
on:
schedule:
- cron: '0 6 * * *' # Daily at 06:00 UTC
push:
branches: [main]
paths:
- 'Cargo.toml'
- 'Cargo.lock'
- 'deny.toml'
pull_request:
paths:
- 'Cargo.toml'
- 'Cargo.lock'
- 'deny.toml'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
audit:
name: Advisory Check
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v6
with:
persist-credentials: false
fetch-depth: 1
- name: Check advisories
uses: EmbarkStudios/cargo-deny-action@v2
with:
command: check advisories