From ef677d14d407576b831999b9fbe826e7e8817e13 Mon Sep 17 00:00:00 2001 From: Robbie Gemmell Date: Fri, 24 Sep 2021 17:06:48 +0100 Subject: [PATCH] NO-JIRA: update GHA builds to use Temurin, and JDK 17 instead of 16 --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0231e0ce72..cc52e6e483 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - java: [ 8, 11, 16 ] + java: [ 8, 11, 17 ] steps: - uses: actions/checkout@v2 @@ -28,7 +28,7 @@ jobs: uses: actions/setup-java@v2 with: java-version: ${{ matrix.java }} - distribution: 'adopt' + distribution: 'temurin' # use 'install' so smoke-tests will work # By setting anything to org.apache.activemq.artemis.core.io.aio.AIOSequentialFileFactory.DISABLED we are disabling libaio loading on the testsuite @@ -43,7 +43,7 @@ jobs: strategy: fail-fast: false matrix: - java: [ 8, 11, 16 ] + java: [ 8, 11, 17 ] steps: - uses: actions/checkout@v2 @@ -63,7 +63,7 @@ jobs: uses: actions/setup-java@v2 with: java-version: ${{ matrix.java }} - distribution: 'adopt' + distribution: 'temurin' - name: Build Main run: |