From eed4c2f06637664fed4c4494fbc4c8c060270a77 Mon Sep 17 00:00:00 2001 From: Markus Ofterdinger Date: Wed, 11 Sep 2024 13:47:46 +0200 Subject: [PATCH] Use sapmachine for maven build (#363) With [latest version](https://github.com/actions/setup-java/releases/tag/v4.3.0) the github action actions/setup-java supports installing sapmachine :-) I think we should advertise our Java VM in our projects. --- .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index d6cb8fdc..3cb878aa 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -25,6 +25,6 @@ jobs: uses: actions/setup-java@v4 with: java-version: 17 - distribution: 'temurin' + distribution: 'sapmachine' - name: Build with Maven run: mvn -ntp -B clean install