Update github/codeql-action digest to ff2f1c6 #970
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: Java CI | |
| on: [workflow_dispatch, push, pull_request] | |
| permissions: read-all | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 30 | |
| strategy: | |
| matrix: | |
| cache: [maven] | |
| distribution: [temurin] | |
| java: [21, 25, 26] | |
| os: [macos-latest, ubuntu-latest, windows-latest] | |
| fail-fast: false | |
| max-parallel: 6 | |
| name: Test JDK ${{ matrix.java }}, ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 | |
| - name: Setup Java ${{ matrix.java }} ${{ matrix.distribution }} | |
| uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # v5 | |
| with: | |
| cache: ${{ matrix.cache }} | |
| distribution: ${{ matrix.distribution }} | |
| java-version: ${{ matrix.java }} | |
| - name: Test with Maven | |
| run: ./mvnw -pl core,extensions test --batch-mode --no-transfer-progress --show-version -D"license.skip=true" |