From 0d5c90b0bec8bfa65764c4e36601ba3671284e52 Mon Sep 17 00:00:00 2001 From: Falko Modler Date: Mon, 16 Aug 2021 21:43:36 +0200 Subject: [PATCH] Switch to Eclipse Temurin JDK --- .github/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 33fe9f3..e5ab505 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,8 +31,9 @@ jobs: - uses: actions/checkout@v2 - name: Set up JDK 11 - uses: actions/setup-java@v1 + uses: actions/setup-java@v2 with: + distribution: temurin java-version: 11 - name: Get Date @@ -49,4 +50,4 @@ jobs: key: maven-repo-pr-${{ runner.os }}-${{ steps.get-date.outputs.date }} - name: Build with Maven - run: mvn -B clean formatter:validate install \ No newline at end of file + run: mvn -B clean formatter:validate install