diff --git a/.github/workflow-samples/groovy-dsl/settings.gradle b/.github/workflow-samples/groovy-dsl/settings.gradle index daeef25..062bb57 100644 --- a/.github/workflow-samples/groovy-dsl/settings.gradle +++ b/.github/workflow-samples/groovy-dsl/settings.gradle @@ -1,6 +1,6 @@ plugins { id "com.gradle.enterprise" version "3.16.2" - id "com.gradle.common-custom-user-data-gradle-plugin" version "1.12.1" + id "com.gradle.common-custom-user-data-gradle-plugin" version "1.13" } gradleEnterprise { diff --git a/.github/workflow-samples/kotlin-dsl/settings.gradle.kts b/.github/workflow-samples/kotlin-dsl/settings.gradle.kts index 4314ca3..21bab0a 100644 --- a/.github/workflow-samples/kotlin-dsl/settings.gradle.kts +++ b/.github/workflow-samples/kotlin-dsl/settings.gradle.kts @@ -1,6 +1,6 @@ plugins { id("com.gradle.enterprise") version "3.16.2" - id("com.gradle.common-custom-user-data-gradle-plugin") version "1.12.1" + id("com.gradle.common-custom-user-data-gradle-plugin") version "1.13" } gradleEnterprise { diff --git a/.github/workflows/integ-test-inject-develocity.yml b/.github/workflows/integ-test-inject-develocity.yml index 98cd9bb..8ffce80 100644 --- a/.github/workflows/integ-test-inject-develocity.yml +++ b/.github/workflows/integ-test-inject-develocity.yml @@ -25,7 +25,7 @@ jobs: DEVELOCITY_INJECTION_ENABLED: true DEVELOCITY_URL: https://ge.solutions-team.gradle.com DEVELOCITY_PLUGIN_VERSION: 3.16.2 - DEVELOCITY_CCUD_PLUGIN_VERSION: 1.12.1 + DEVELOCITY_CCUD_PLUGIN_VERSION: 1.13 GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} # This env var has not (yet) been renamed/aliased in GE plugin 3.16.2 strategy: matrix: diff --git a/sources/src/build-scan.ts b/sources/src/build-scan.ts index aa38830..dd9ee6e 100644 --- a/sources/src/build-scan.ts +++ b/sources/src/build-scan.ts @@ -9,7 +9,7 @@ export function setup(): void { if (getBuildScanPublishEnabled() && verifyTermsOfServiceAgreement()) { maybeExportVariable('DEVELOCITY_INJECTION_ENABLED', 'true') maybeExportVariable('DEVELOCITY_PLUGIN_VERSION', '3.16.2') - maybeExportVariable('DEVELOCITY_CCUD_PLUGIN_VERSION', '1.12.1') + maybeExportVariable('DEVELOCITY_CCUD_PLUGIN_VERSION', '1.13') maybeExportVariable('BUILD_SCAN_TERMS_OF_SERVICE_URL', getBuildScanTermsOfServiceUrl()) maybeExportVariable('BUILD_SCAN_TERMS_OF_SERVICE_AGREE', getBuildScanTermsOfServiceAgree()) } diff --git a/sources/test/init-scripts/settings.gradle b/sources/test/init-scripts/settings.gradle index 63513f0..fcd52ea 100644 --- a/sources/test/init-scripts/settings.gradle +++ b/sources/test/init-scripts/settings.gradle @@ -1,6 +1,6 @@ plugins { id "com.gradle.enterprise" version "3.16.2" - id "com.gradle.common-custom-user-data-gradle-plugin" version "1.12.1" + id "com.gradle.common-custom-user-data-gradle-plugin" version "1.13" } gradleEnterprise { diff --git a/sources/test/init-scripts/src/test/groovy/com/gradle/gradlebuildaction/BaseInitScriptTest.groovy b/sources/test/init-scripts/src/test/groovy/com/gradle/gradlebuildaction/BaseInitScriptTest.groovy index 5def030..1bf6c72 100644 --- a/sources/test/init-scripts/src/test/groovy/com/gradle/gradlebuildaction/BaseInitScriptTest.groovy +++ b/sources/test/init-scripts/src/test/groovy/com/gradle/gradlebuildaction/BaseInitScriptTest.groovy @@ -17,7 +17,7 @@ import java.util.zip.GZIPOutputStream class BaseInitScriptTest extends Specification { static final String DEVELOCITY_PLUGIN_VERSION = '3.16.2' - static final String CCUD_PLUGIN_VERSION = '1.12.1' + static final String CCUD_PLUGIN_VERSION = '1.13' static final TestGradleVersion GRADLE_3_X = new TestGradleVersion(GradleVersion.version('3.5.1'), 7, 9) static final TestGradleVersion GRADLE_4_X = new TestGradleVersion(GradleVersion.version('4.10.3'), 7, 10)