Update meeting times of Client-Side SIG (#2844) #82
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: CodeQL | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
schedule: | |
- cron: "23 16 * * 2" # weekly at 16:23 UTC on Tuesday | |
permissions: | |
contents: read | |
jobs: | |
analyze: | |
name: Analyze (${{ matrix.language }}) | |
permissions: | |
contents: read | |
actions: read # for github/codeql-action/init to get workflow details | |
security-events: write # for github/codeql-action/analyze to upload SARIF results | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- language: actions | |
- language: python | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2 | |
with: | |
languages: ${{ matrix.language }} | |
- name: Perform CodeQL analysis | |
uses: github/codeql-action/analyze@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2 | |
with: | |
category: "/language:${{matrix.language}}" |