chore(deps): bump rusqlite from 0.30.0 to 0.40.2 in /core #11
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: WOML Dependency Security | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '17 5 * * 1' | |
| pull_request: | |
| paths: | |
| - 'core/Cargo.lock' | |
| - 'core/**/Cargo.toml' | |
| - 'woml/bun.lock' | |
| - 'woml/package.json' | |
| - 'woml-cli/bun.lock' | |
| - 'woml-cli/package.json' | |
| - '.github/workflows/security.yml' | |
| concurrency: | |
| group: woml-security-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| audit: | |
| name: Audit locked JavaScript and Rust dependencies | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: '1.3.14' | |
| - uses: dtolnay/rust-toolchain@stable | |
| - name: Audit the locked JavaScript graph | |
| run: bun audit --cwd woml-cli | |
| - name: Audit the locked Rust graph | |
| run: | | |
| cargo install cargo-audit --version 0.22.2 --locked | |
| cargo audit --file core/Cargo.lock --ignore RUSTSEC-2026-0258 |