Update gradle/actions digest to 50e97c2 #529
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: Cross Version | |
| on: | |
| schedule: | |
| - cron: "0 0 * * 1" # Every Monday at 00:00 UTC | |
| push: | |
| branches: | |
| - main | |
| - "release/**" | |
| pull_request: | |
| branches: | |
| - '*' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| permissions: {} | |
| jobs: | |
| openjdk: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| java: | |
| - version: 25 | |
| - version: 26 | |
| type: ea | |
| name: "OpenJDK ${{ matrix.java.version }}${{ matrix.java.type != null && format(' ({0})', matrix.java.type) || ''}}" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check Out Repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| with: | |
| fetch-depth: 1 | |
| persist-credentials: false | |
| - name: "Set up JDK ${{ matrix.java.version }} (EA)" | |
| if: matrix.java.type == 'ea' | |
| uses: oracle-actions/setup-java@v1 | |
| with: | |
| website: jdk.java.net | |
| release: ${{ matrix.java.release || matrix.java.version }} | |
| - name: "Set up JDK ${{ matrix.java.version }} (${{ matrix.java.distribution || 'Temurin' }})" | |
| if: matrix.java.type != 'ea' | |
| uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5 | |
| with: | |
| distribution: ${{ matrix.java.distribution || 'temurin' }} | |
| java-version: ${{ matrix.java.version }} | |
| check-latest: true | |
| - name: Build | |
| uses: ./.github/actions/run-gradle | |
| with: | |
| arguments: | | |
| -PjavaToolchain.target=${{ matrix.java.version }} \ | |
| build -x :documentation:build |