Skip to content

chore(ci): bump codeql-action init+analyze to v4.37.9 together #2384

chore(ci): bump codeql-action init+analyze to v4.37.9 together

chore(ci): bump codeql-action init+analyze to v4.37.9 together #2384

Workflow file for this run

# CodeQL Security Analysis
#
# Analyzes openElement TypeScript source code for security vulnerabilities
# and code quality issues using GitHub's CodeQL engine.
#
# For Deno/TypeScript projects, CodeQL's JS/TS extractor can analyze
# source files directly without a build step.
name: CodeQL
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
schedule:
# Weekly scan on Sunday at 08:00 UTC
- cron: '0 8 * * 0'
workflow_dispatch:
jobs:
analyze:
name: Analyze TypeScript
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: ['javascript-typescript']
steps:
- name: Checkout repository
# v7.0.1
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
- name: Initialize CodeQL
# v4.37.9
uses: github/codeql-action/init@cdf488f595d80d6e07e03d4674febd5ab45fa938
with:
languages: ${{ matrix.language }}
# Deno project: no build step needed for TS source analysis
# CodeQL JS/TS extractor works on raw source files
queries: security-extended,security-and-quality
- name: Perform CodeQL Analysis
# v4.37.9
uses: github/codeql-action/analyze@cdf488f595d80d6e07e03d4674febd5ab45fa938
with:
category: '/language:${{matrix.language}}'