diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 1ca29f8e7..43911ad3b 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -27,16 +27,11 @@ jobs: with: java-version: '17' distribution: 'temurin' - - # Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies. - # See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md - name: Setup Gradle - uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0 - + uses: gradle/actions/setup-gradle@v3 - name: Build with Gradle Wrapper - run: | - cd kotlin - ./gradlew build + run: ./gradlew build + working-directory: kotlin # 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.