From e1389b1ab36d81d1ac140686efd345d748f44457 Mon Sep 17 00:00:00 2001 From: itkhanz <62521743+itkhanz@users.noreply.github.com> Date: Sun, 29 Oct 2023 23:28:15 +0100 Subject: [PATCH] ci: fixed jdk distribution --- .github/workflows/test-execution.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-execution.yml b/.github/workflows/test-execution.yml index f72dd0e..a300856 100644 --- a/.github/workflows/test-execution.yml +++ b/.github/workflows/test-execution.yml @@ -14,15 +14,16 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4 - name: Setup Java JDK 17 - uses: actions/setup-java@v3.13.0 + uses: actions/setup-java@v3 with: + distribution: 'temurin' # See 'Supported distributions' for available options java-version: 17 - name: Cache Maven packages - uses: actions/cache@v3.3.2 + uses: actions/cache@v3 with: path: ~/.m2/repository # Cache the Maven repository key: maven-${{ runner.os }}-${{ hashFiles('**/pom.xml') }} # Cache key based on the OS and project files