chore(deps): update github/codeql-action action to v4 #487
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: Build Pull Request | |
| on: | |
| pull_request: | |
| merge_group: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| common: | |
| uses: ./.github/workflows/build-common.yml | |
| with: | |
| cache-read-only: true | |
| # retry in merge queue to avoid unnecessary failures | |
| max-test-retries: ${{ github.event_name == 'merge_group' && 5 || 0 }} | |
| link-check: | |
| uses: ./.github/workflows/reusable-link-check.yml | |
| required-status-check: | |
| if: always() | |
| needs: | |
| - common | |
| - link-check # wait for link check to complete, but don't require it to pass for merging | |
| runs-on: ubuntu-latest | |
| steps: | |
| # The reusable workflow success depends on all its jobs passing | |
| - if: needs.common.result != 'success' | |
| run: exit 1 # fail |