Skip to content

chore(deps)(deps-dev): bump @types/node from 24.10.9 to 25.2.0 in /packages/ioc #308

chore(deps)(deps-dev): bump @types/node from 24.10.9 to 25.2.0 in /packages/ioc

chore(deps)(deps-dev): bump @types/node from 24.10.9 to 25.2.0 in /packages/ioc #308

Workflow file for this run

name: "CodeQL Security Analysis"
# This workflow runs CodeQL analysis for security scanning
# Runs on:
# - Weekly schedule (Monday at midnight UTC)
# - Push events to main and develop branches
# - Pull requests targeting main branch
# - Manual trigger via workflow_dispatch
on:
schedule:
- cron: "0 0 * * 1" # Weekly on Monday at midnight UTC
push:
branches:
- main
- develop
pull_request:
branches:
- main
workflow_dispatch: # Allow manual trigger
jobs:
analyze:
name: Analyze Code Security
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [javascript]
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
queries: security-extended,security-and-quality
- name: Autobuild
uses: github/codeql-action/autobuild@v4
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
with:
category: "/language:${{matrix.language}}"