From 94fff101fc8bd0151aa6b496208e7036fc2558d8 Mon Sep 17 00:00:00 2001 From: Joachim Schlienger Date: Mon, 12 Aug 2024 11:17:59 +0200 Subject: [PATCH] feat(CHIST-9921): fix action/setup-java use distribution and cache --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2d9933d..b5b68fb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,6 +12,8 @@ jobs: - name: Set up JDK uses: actions/setup-java@v4 with: + distribution: 'temurin' java-version: 17 + cache: 'maven' - name: Build with Maven run: mvn clean verify --file pom.xml