From 958fa657cd81de1382af8ec4929bc0a791e7368d Mon Sep 17 00:00:00 2001 From: P0nk Date: Mon, 6 Sep 2021 21:23:57 +0200 Subject: [PATCH] Configure Actions for Java 16 --- .github/workflows/pr-pipeline.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr-pipeline.yml b/.github/workflows/pr-pipeline.yml index aec43abdf0..cda68c6532 100644 --- a/.github/workflows/pr-pipeline.yml +++ b/.github/workflows/pr-pipeline.yml @@ -14,10 +14,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set up JDK 8 + - name: Set up JDK 16 uses: actions/setup-java@v2 with: - java-version: '8' - distribution: 'adopt' + java-version: '16' + distribution: 'temurin' - name: Build with Maven (compile -> test -> package) run: mvn -B package --file pom.xml