fix(deps): update dependency typescript to v7 #14882
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: 'Run CodeQL' | |
| # Ensures that only one workflow is run per branch at a time. | |
| concurrency: | |
| cancel-in-progress: true | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }} | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - release-[0-9]+.[0-9]+ | |
| pull_request: | |
| branches: | |
| - master | |
| - release-[0-9]+.[0-9]+ | |
| schedule: | |
| - cron: '31 11 * * 4' | |
| permissions: | |
| contents: read # for checking out the repository (e.g. actions/checkout) | |
| jobs: | |
| analyze: | |
| name: Run CodeQL | |
| runs-on: ubuntu-latest | |
| permissions: | |
| security-events: write # for adding code alert statuses | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: | |
| - javascript | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - uses: github/codeql-action/init@54f647b7e1bb85c95cddabcd46b0c578ec92bc1a # v4.36.3 | |
| with: | |
| languages: ${{ matrix.language }} | |
| - uses: github/codeql-action/autobuild@54f647b7e1bb85c95cddabcd46b0c578ec92bc1a # v4.36.3 | |
| - uses: github/codeql-action/analyze@54f647b7e1bb85c95cddabcd46b0c578ec92bc1a # v4.36.3 | |
| with: | |
| category: '/language:${{matrix.language}}' |