Skip to content

chore(deps): bump @inquirer/prompts from 7.10.1 to 8.5.2 in the production-dependencies group #368

chore(deps): bump @inquirer/prompts from 7.10.1 to 8.5.2 in the production-dependencies group

chore(deps): bump @inquirer/prompts from 7.10.1 to 8.5.2 in the production-dependencies group #368

Workflow file for this run

name: Security
on:
schedule:
- cron: "0 0 * * 0" # Weekly on Sunday
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
security-events: write
jobs:
codeql:
name: CodeQL Analysis
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: typescript
- name: Autobuild
uses: github/codeql-action/autobuild@v4
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
audit:
name: Dependency Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "24"
cache: "npm"
- run: npm ci
- name: Audit dependencies
run: npm audit --audit-level=high
continue-on-error: ${{ github.event_name == 'pull_request' }}
- name: Check for known vulnerabilities
run: npx better-npm-audit audit --level high
continue-on-error: ${{ github.event_name == 'pull_request' }}