Update github/codeql-action digest to 1b168cd #38
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" | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| schedule: | |
| - cron: '43 10 * * 2' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| analyze: | |
| name: Analyze | |
| runs-on: 'ubuntu-latest' | |
| timeout-minutes: 30 | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 | |
| - name: Setup Java | |
| uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e # v5 | |
| with: | |
| cache: maven | |
| distribution: 'temurin' | |
| java-version: 25 | |
| - name: Install Toolchain JDK | |
| uses: battila7/jdk-via-jabba@v1 | |
| with: | |
| jdk: [email protected] | |
| javaHomeEnvironmentVariable: TOOLCHAIN_JDK | |
| - name: Set up Toolchain | |
| shell: bash | |
| run: | | |
| mkdir --parents $HOME/.m2 \ | |
| && cat << EOF > $HOME/.m2/toolchains.xml | |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <toolchains> | |
| <toolchain> | |
| <type>jdk</type> | |
| <provides> | |
| <version>17</version> | |
| <vendor>zulu</vendor> | |
| </provides> | |
| <configuration> | |
| <jdkHome>${{ env.TOOLCHAIN_JDK }}</jdkHome> | |
| </configuration> | |
| </toolchain> | |
| </toolchains> | |
| EOF | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@1b168cd39490f61582a9beae412bb7057a6b2c4e # v4 | |
| with: | |
| queries: +security-and-quality | |
| - name: Autobuild (manual core) | |
| working-directory: core | |
| run: ./mvnw clean install -DskipTests | |
| - name: Autobuild (manual eclipse) | |
| working-directory: eclipse | |
| run: ./mvnw clean install -DskipTests | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@1b168cd39490f61582a9beae412bb7057a6b2c4e # v4 |