From 355cc1c5c08c67256a5a4a292b1440a314ea6aa1 Mon Sep 17 00:00:00 2001 From: Clay Johnson Date: Wed, 26 Apr 2023 08:22:05 -0500 Subject: [PATCH 1/2] Update Gradle Enterprise Maven Extension to 1.17 --- .mvn/ge-extensions.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.mvn/ge-extensions.xml b/.mvn/ge-extensions.xml index 1c7a1611c1bcc..3c03b32a23775 100644 --- a/.mvn/ge-extensions.xml +++ b/.mvn/ge-extensions.xml @@ -24,7 +24,7 @@ com.gradle gradle-enterprise-maven-extension - 1.16.3 + 1.17 com.gradle From 9689d1a488480321844bad3392d83b0eb55f7d89 Mon Sep 17 00:00:00 2001 From: Clay Johnson Date: Wed, 26 Apr 2023 08:30:31 -0500 Subject: [PATCH 2/2] Remove conditional build logic to `cp ge-extensions.xml` With updates in Gradle Enterprise Maven Extension 1.17, the `publishIfAuthenticated` configuration will silently not publish a build scan if the user is not authenticated to https://ge.apache.org. --- .github/actions/gradle-enterprise/action.yml | 1 - .gitignore | 1 - .mvn/{ge-extensions.xml => extensions.xml} | 0 3 files changed, 2 deletions(-) rename .mvn/{ge-extensions.xml => extensions.xml} (100%) diff --git a/.github/actions/gradle-enterprise/action.yml b/.github/actions/gradle-enterprise/action.yml index 935e76d3cd645..a11e59899c756 100644 --- a/.github/actions/gradle-enterprise/action.yml +++ b/.github/actions/gradle-enterprise/action.yml @@ -29,7 +29,6 @@ runs: - run: | if [[ -n "${{ inputs.token }}" ]]; then echo "::group::Configuring Gradle Enterprise for build" - cp .mvn/ge-extensions.xml .mvn/extensions.xml echo "GRADLE_ENTERPRISE_ACCESS_KEY=${{ inputs.token }}" >> $GITHUB_ENV echo "::endgroup::" fi diff --git a/.gitignore b/.gitignore index c584baaa0a0b8..cd00c44200059 100644 --- a/.gitignore +++ b/.gitignore @@ -97,4 +97,3 @@ test-reports/ # Gradle Enterprise .mvn/.gradle-enterprise/ -.mvn/extensions.xml diff --git a/.mvn/ge-extensions.xml b/.mvn/extensions.xml similarity index 100% rename from .mvn/ge-extensions.xml rename to .mvn/extensions.xml