Support graceful shutdown for network connections #3099
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: "CodeQL" | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
schedule: | |
# Non-peak hour 1:21 AM on Saturdays. | |
- cron: '21 1 * * 6' | |
permissions: read-all | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 360 | |
permissions: | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ 'javascript-typescript', 'python' ] | |
steps: | |
- name: Checkout | |
uses: >- # v4.1.1 | |
actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- name: Initialize CodeQL | |
uses: >- # v3.22.11 | |
github/codeql-action/init@b374143c1149a9115d881581d29b8390bbcbb59c | |
with: | |
languages: ${{ matrix.language }} | |
- name: Perform CodeQL Analysis | |
uses: >- # v3.22.11 | |
github/codeql-action/analyze@b374143c1149a9115d881581d29b8390bbcbb59c | |
with: | |
category: "/language:${{matrix.language}}" |