Work around failures on platforms where the number of files open at once is limited #2883
Workflow file for this run
This file contains 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: Code Scanning | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
permissions: read-all | |
jobs: | |
codeql-build: | |
name: CodeQL Build | |
permissions: | |
security-events: write | |
strategy: | |
matrix: | |
language: | |
- actions | |
- typescript | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout tree | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3.28.8 | |
with: | |
config-file: .github/codeql/codeql-configuration.yml | |
languages: ${{ matrix.language }} | |
- name: Perform CodeQL analysis | |
uses: github/codeql-action/analyze@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3.28.8 |