Skip to content

feat(app): opt-in debug logging mode and safer, richer diagnostic bundles #572

feat(app): opt-in debug logging mode and safer, richer diagnostic bundles

feat(app): opt-in debug logging mode and safer, richer diagnostic bundles #572

Workflow file for this run

name: CodeQL
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
# Weekly, Monday 09:30 UTC - a quiet time with no other scheduled workflow.
- cron: "30 9 * * 1"
permissions:
security-events: write
packages: read
actions: read
contents: read
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ubuntu-latest
timeout-minutes: 360
strategy:
fail-fast: false
matrix:
include:
- language: actions
build-mode: none
- language: javascript-typescript
build-mode: none
- language: rust
build-mode: none
steps:
- uses: actions/checkout@v7
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
# Match the prior default-setup threat model (remote_and_local).
config: |
threat-models:
- remote
- local
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
with:
category: "/language:${{ matrix.language }}"