From 402db523004afd1775248d5f4933b8e2f9a11876 Mon Sep 17 00:00:00 2001 From: skateball Date: Mon, 20 Jan 2025 18:58:07 +0100 Subject: [PATCH] Migrating from Temurin 8 to SapMachine 17 --- .github/workflows/maven.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 526a02f..2375812 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -16,12 +16,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - name: Set up JDK 8 - uses: actions/setup-java@v3 + - uses: actions/checkout@v4 + - name: Set up JDK + uses: actions/setup-java@v4 with: - java-version: '8' - distribution: 'temurin' + java-version: '17' + distribution: 'sapmachine' cache: maven - name: Install Dependencies run: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V