build(deps): bump peter-evans/create-pull-request from 653ba8b281fa5e1ee78ec20dda96cf9a79102c04 to c66b8cb0050a39d19695bb3389f91c393c60f7f7 #246
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
| # CodeQL advanced setup. Replaces default-setup once disabled in repo settings. | |
| # Advanced unlocks paths-ignore (skip generated TS stubs) and workflow pinning. | |
| name: CodeQL | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths-ignore: | |
| - "src/generated/**" | |
| - "**/*.md" | |
| push: | |
| branches: [main] | |
| schedule: | |
| - cron: "43 7 * * 1" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| analyze: | |
| name: Analyze (${{ matrix.language }}) | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| permissions: | |
| security-events: write | |
| packages: read | |
| actions: read | |
| contents: read | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - language: actions | |
| build-mode: none | |
| - language: javascript-typescript | |
| build-mode: none | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| with: | |
| persist-credentials: false | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: ${{ matrix.language }} | |
| build-mode: ${{ matrix.build-mode }} | |
| config: | | |
| paths-ignore: | |
| - src/generated/** | |
| - name: Analyze | |
| uses: github/codeql-action/analyze@v4 | |
| with: | |
| category: "/language:${{ matrix.language }}" |