From 1fe2b5e3486554371e2dbb0fc5d77561fcebe0e2 Mon Sep 17 00:00:00 2001 From: Gasper Kojek Date: Wed, 26 Jun 2024 10:58:17 +0200 Subject: [PATCH] Migrated to gradle/actions/setup-gradle@v3 and removed info logging from build-verification --- .github/actions/gradle/experiment-config-cache/action.yml | 2 +- .github/workflows/build-verification.yml | 4 ++-- .../workflows/cross-platform-testing-build-from-source.yml | 2 +- .github/workflows/development-release.yml | 2 +- .github/workflows/production-release.yml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/actions/gradle/experiment-config-cache/action.yml b/.github/actions/gradle/experiment-config-cache/action.yml index 9f96f78b..f4eef6e3 100644 --- a/.github/actions/gradle/experiment-config-cache/action.yml +++ b/.github/actions/gradle/experiment-config-cache/action.yml @@ -13,7 +13,7 @@ runs: using: "composite" steps: - name: Set up Gradle - uses: gradle/gradle-build-action@v3 + uses: gradle/actions/setup-gradle@v3 with: cache-disabled: true - name: Run experiment diff --git a/.github/workflows/build-verification.yml b/.github/workflows/build-verification.yml index 919219fd..833b53a5 100644 --- a/.github/workflows/build-verification.yml +++ b/.github/workflows/build-verification.yml @@ -18,8 +18,8 @@ jobs: java-version: '8' distribution: 'adopt' - name: Set up Gradle - uses: gradle/gradle-build-action@v3 + uses: gradle/actions/setup-gradle@v3 with: develocity-access-key: ${{ secrets.DV_SOLUTIONS_ACCESS_KEY }} - name: Build with Gradle - run: ./gradlew build -i + run: ./gradlew build diff --git a/.github/workflows/cross-platform-testing-build-from-source.yml b/.github/workflows/cross-platform-testing-build-from-source.yml index 2e9e7c28..099ef1ee 100644 --- a/.github/workflows/cross-platform-testing-build-from-source.yml +++ b/.github/workflows/cross-platform-testing-build-from-source.yml @@ -15,7 +15,7 @@ jobs: java-version: '8' distribution: 'adopt' - name: Set up Gradle - uses: gradle/gradle-build-action@v3 + uses: gradle/actions/setup-gradle@v3 with: develocity-access-key: ${{ secrets.DV_SOLUTIONS_ACCESS_KEY }} - name: Build with Gradle diff --git a/.github/workflows/development-release.yml b/.github/workflows/development-release.yml index 77bd60bd..ecd5ec5f 100644 --- a/.github/workflows/development-release.yml +++ b/.github/workflows/development-release.yml @@ -19,7 +19,7 @@ jobs: java-version: '8' distribution: 'adopt' - name: Set up Gradle - uses: gradle/gradle-build-action@v3 + uses: gradle/actions/setup-gradle@v3 with: develocity-access-key: ${{ secrets.DV_SOLUTIONS_ACCESS_KEY }} - name: Build with Gradle diff --git a/.github/workflows/production-release.yml b/.github/workflows/production-release.yml index 8f58655a..0f4e5115 100644 --- a/.github/workflows/production-release.yml +++ b/.github/workflows/production-release.yml @@ -21,7 +21,7 @@ jobs: java-version: '8' distribution: 'adopt' - name: Set up Gradle - uses: gradle/gradle-build-action@v3 + uses: gradle/actions/setup-gradle@v3 with: develocity-access-key: ${{ secrets.DV_SOLUTIONS_ACCESS_KEY }} - name: Build with Gradle