chore(deps): update github/codeql-action digest to 5d4e8d1 #787
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: Pull Request Build | |
| on: pull_request | |
| env: | |
| # renovate: datasource=java-version depName=java-jdk | |
| JAVA_VERSION: '25.0.1+8.0.LTS' | |
| # renovate: datasource=maven depName=org.apache.maven:maven | |
| MAVEN_VERSION: '3.9.11' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 | |
| - name: Set up Maven | |
| uses: stCarolas/setup-maven@07fbbe97d97ef44336b7382563d66743297e442f # v4.5 | |
| with: | |
| maven-version: ${{ env.MAVEN_VERSION }} | |
| - name: Set up Java | |
| uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e # v5 | |
| with: | |
| java-version: ${{ env.JAVA_VERSION }} | |
| distribution: 'temurin' | |
| cache: 'maven' | |
| - name: Build with Maven | |
| run: mvn --batch-mode --update-snapshots verify |