Skip to content

chore: release v0.12.0 #1062

chore: release v0.12.0

chore: release v0.12.0 #1062

Workflow file for this run

name: Security Audit
on:
push:
branches: [main]
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
- ".github/workflows/security.yml"
pull_request:
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
- ".github/workflows/security.yml"
schedule:
- cron: "0 0 * * *" # Daily at midnight UTC
env:
CARGO_TERM_COLOR: always
# Cancel previous runs
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
security-audit:
name: Security Audit
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
- name: Install Rust
uses: dtolnay/rust-toolchain@4cda84d5c5c54efe2404f9d843567869ab1699d4 # stable
with:
toolchain: 1.90
- name: Cache cargo registry
uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2.9.1
with:
cache-on-failure: true
- name: Install and run cargo-audit
run: |
cargo install cargo-audit --version 0.22.2 --locked
cargo audit --deny warnings