Skip to content

chore(deps-dev): bump shadcn from 3.8.5 to 4.8.0 #145

chore(deps-dev): bump shadcn from 3.8.5 to 4.8.0

chore(deps-dev): bump shadcn from 3.8.5 to 4.8.0 #145

Workflow file for this run

name: Security Audit
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
schedule:
- cron: "0 6 * * 1"
permissions:
contents: read
jobs:
npm-audit:
name: npm audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Run npm audit (production)
run: npm audit --omit=dev --audit-level=high
cargo-audit:
name: cargo audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Install cargo-audit
run: cargo install cargo-audit --locked
- name: Run cargo audit
run: cargo audit
working-directory: src-tauri