Skip to content

Remove latest snapshot #422

Remove latest snapshot

Remove latest snapshot #422

Workflow file for this run

name: Security Audit
on:
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
- 'deny.toml'
pull_request:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
- 'deny.toml'
schedule:
# Run security audit weekly on Sundays at 00:00 UTC
- cron: '0 0 * * 0'
workflow_dispatch:
# Allow manual triggering of the security audit
jobs:
audit:
name: Security Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
submodules: recursive
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Install cargo-audit
run: cargo install cargo-audit
- name: Run security audit
run: cargo audit
deny:
name: License and Dependency Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
submodules: recursive
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Install cargo-deny
run: cargo install cargo-deny
- name: Run cargo-deny
run: cargo deny check