fix: update @babel/runtime and @babel/helpers to 7.26.10 COMPASS-9137 COMPASS-9136 COMPASS-9135 COMPASS-9134 COMPASS-9133 COMPASS-9132 #9728
Workflow file for this run
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 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - "*-releases" | |
| tags: | |
| - v* | |
| pull_request: | |
| branches: | |
| - main | |
| schedule: | |
| - cron: "30 14 * * 4" | |
| workflow_dispatch: | |
| inputs: {} | |
| jobs: | |
| analyze: | |
| name: Analyze | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 360 | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - language: go | |
| build-mode: autobuild | |
| - language: javascript | |
| build-mode: none | |
| - language: python | |
| build-mode: none | |
| - language: actions | |
| build-mode: none | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v3 | |
| with: | |
| languages: ${{ matrix.language }} | |
| build-mode: ${{ matrix.build-mode }} | |
| queries: security-extended | |
| config: | | |
| paths-ignore: | |
| - '**/*.test.js' | |
| - '**/*.spec.js' | |
| - '**/*.test.ts' | |
| - '**/*.spec.ts' | |
| - '**/*.test.tsx' | |
| - '**/*.spec.tsx' | |
| - 'scripts/**' | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v3 | |
| with: | |
| category: "/language:${{matrix.language}}" |