Add support for JDK22 env var for Gradle toolchains #2951
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 | |
- 'releases/**' | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: | |
- main | |
- 'releases/**' | |
schedule: | |
- cron: '0 19 * * 3' | |
env: | |
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
permissions: | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: | |
- java | |
- javascript | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: ${{ matrix.language }} | |
tools: latest | |
- name: Build | |
uses: ./.github/actions/run-gradle | |
with: | |
arguments: | | |
--no-build-cache | |
-Dscan.tag.CodeQL | |
allMainClasses | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 |