From d770366cd1a57b7a0b27134c9f420346eb73853d Mon Sep 17 00:00:00 2001 From: Stefan Zimmermann Date: Thu, 18 Apr 2024 00:11:45 +0200 Subject: [PATCH] Update gradle.yml --- .github/workflows/gradle.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 27400c2..2c58b50 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -32,9 +32,14 @@ jobs: # See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md - name: Setup Gradle uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0 + with: + gradle-version: '8.7' + + - name: Setup Gradle Wrapper + run: gradle wrapper --info --warning-mode fail --stacktrace - - name: Build with Gradle Wrapper - run: ./gradlew build + - name: Assemble with Gradle Wrapper + run: ./gradlew assemble --info --warning-mode fail --stacktrace # NOTE: The Gradle Wrapper is the default and recommended way to run Gradle (https://docs.gradle.org/current/userguide/gradle_wrapper.html). # If your project does not have the Gradle Wrapper configured, you can use the following configuration to run Gradle with a specified version.