Merge pull request #1031 from ocaml/dependabot/github_actions/actions… #3194
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: 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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@fe4161a26a8629af62121b670040955b330f9af2 # v3.29.5 | |
| with: | |
| config-file: .github/codeql/codeql-configuration.yml | |
| languages: ${{ matrix.language }} | |
| - name: Perform CodeQL analysis | |
| uses: github/codeql-action/analyze@fe4161a26a8629af62121b670040955b330f9af2 # v3.29.5 |