From 3f8fd7ea8929daa9d02e0c0c1613e4c8dbe06dfc Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 6 Sep 2023 15:38:17 +0200 Subject: [PATCH] Update actions/setup-java action to v3 (#114) --- .github/workflows/main.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 680759f..f40a621 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,9 +23,10 @@ jobs: restore-keys: | test-${{ runner.os }}-gradle- - name: 'Set up JDK' - uses: actions/setup-java@v1 + uses: actions/setup-java@v3 with: java-version: 8 + distribution: temurin - name: 'Gradle Version' run: | ./gradlew --version @@ -44,9 +45,10 @@ jobs: restore-keys: | test-${{ runner.os }}-maven- - name: 'Set up JDK' - uses: actions/setup-java@v1 + uses: actions/setup-java@v3 with: java-version: 8 + distribution: temurin - name: 'Check Spock' run: | - ./mvnw -V -B verify \ No newline at end of file + ./mvnw -V -B verify