diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index adc12e4..747711d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,13 +15,14 @@ jobs: matrix: os: [ ubuntu-latest, windows-latest, macos-latest ] # Keep this list as: all supported LTS JDKs, the latest GA JDK, and the latest EA JDK. - java: [ 11, 17, 20, 21-ea ] + java: [ 11, 17, 21, 22-ea ] steps: - name: Checkout uses: actions/checkout@v2 - name: Set up JDK ${{ matrix.java }} - uses: actions/setup-java@v1 + uses: actions/setup-java@v4 with: + distribution: temurin java-version: ${{ matrix.java }} - name: Cache local Maven repository uses: actions/cache@v2 @@ -31,4 +32,4 @@ jobs: restore-keys: | ${{ runner.os }}-maven- - name: Build with Maven - run: mvn -B verify + run: mvn --batch-mode --no-transfer-progress verify