chore(deps)(deps-dev): bump @types/node from 24.10.9 to 25.2.0 in /packages/ioc #308
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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}}" | |