Skip to content

fix: remove hard-coded paths and patch overrides #49

fix: remove hard-coded paths and patch overrides

fix: remove hard-coded paths and patch overrides #49

Workflow file for this run

name: Security Audit
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 0 * * 1' # Weekly Monday midnight UTC
env:
CARGO_TERM_COLOR: always
jobs:
audit:
name: Security Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Install cargo-audit
run: cargo install cargo-audit
- name: Run security audit
run: cargo audit
- name: Check for known vulnerabilities
run: cargo audit --deny warnings || true