Mark TLS handshake timeouts and closed channels as retryable exceptions #7468
Workflow file for this run
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 | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: [ main, '0.41', '0.42' ] | |
| paths-ignore: | |
| - 'docs/**' | |
| - 'scripts/**' | |
| - '.github/pull_request_template.md' | |
| - '.gitignore' | |
| - '**.adoc' | |
| - '**.txt' | |
| - '**.groovy' | |
| pull_request: | |
| # The branches below must be a subset of the branches above | |
| branches: [ main, '0.41' ] | |
| paths-ignore: | |
| - 'docs/**' | |
| - 'scripts/**' | |
| - '.github/pull_request_template.md' | |
| - '.gitignore' | |
| - '**.adoc' | |
| - '**.txt' | |
| schedule: | |
| - cron: '0 13 * * 1' | |
| jobs: | |
| analyze: | |
| permissions: | |
| contents: read | |
| actions: read | |
| security-events: write | |
| name: Analyze | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: [ 'java' ] | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: 17 | |
| distribution: 'zulu' | |
| cache: 'gradle' | |
| - name: Print JDK Version | |
| run: java -version | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: ${{ matrix.language }} | |
| - name: Clean Gradle project | |
| run: ./gradlew --parallel clean | |
| - name: Assemble Gradle project | |
| run: ./gradlew --parallel --no-build-cache assemble | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 |