From f163b30724ef7e41e111c51177660574d2fa3665 Mon Sep 17 00:00:00 2001 From: daz Date: Tue, 18 Apr 2023 18:38:02 -0600 Subject: [PATCH] Bump GE plugin to 3.13 --- .github/workflow-samples/groovy-dsl/settings.gradle | 2 +- .github/workflow-samples/kotlin-dsl/settings.gradle.kts | 2 +- .github/workflow-samples/no-wrapper-gradle-5/build.gradle | 2 +- .github/workflow-samples/no-wrapper/settings.gradle | 2 +- test/init-scripts/settings.gradle | 2 +- .../com/gradle/gradlebuildaction/BaseInitScriptTest.groovy | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflow-samples/groovy-dsl/settings.gradle b/.github/workflow-samples/groovy-dsl/settings.gradle index ce2d92d..3b95bf2 100644 --- a/.github/workflow-samples/groovy-dsl/settings.gradle +++ b/.github/workflow-samples/groovy-dsl/settings.gradle @@ -1,5 +1,5 @@ plugins { - id "com.gradle.enterprise" version "3.12.6" + id "com.gradle.enterprise" version "3.13" id "com.gradle.common-custom-user-data-gradle-plugin" version "1.10" } diff --git a/.github/workflow-samples/kotlin-dsl/settings.gradle.kts b/.github/workflow-samples/kotlin-dsl/settings.gradle.kts index 55dc7ab..7649d1b 100644 --- a/.github/workflow-samples/kotlin-dsl/settings.gradle.kts +++ b/.github/workflow-samples/kotlin-dsl/settings.gradle.kts @@ -1,5 +1,5 @@ plugins { - id("com.gradle.enterprise") version "3.12.6" + id("com.gradle.enterprise") version "3.13" id("com.gradle.common-custom-user-data-gradle-plugin") version "1.10" } diff --git a/.github/workflow-samples/no-wrapper-gradle-5/build.gradle b/.github/workflow-samples/no-wrapper-gradle-5/build.gradle index b404213..e44293e 100644 --- a/.github/workflow-samples/no-wrapper-gradle-5/build.gradle +++ b/.github/workflow-samples/no-wrapper-gradle-5/build.gradle @@ -1,5 +1,5 @@ plugins { - id "com.gradle.build-scan" version "3.12.6" + id "com.gradle.build-scan" version "3.13" } gradleEnterprise { diff --git a/.github/workflow-samples/no-wrapper/settings.gradle b/.github/workflow-samples/no-wrapper/settings.gradle index dad5f1e..0deb627 100644 --- a/.github/workflow-samples/no-wrapper/settings.gradle +++ b/.github/workflow-samples/no-wrapper/settings.gradle @@ -1,5 +1,5 @@ plugins { - id "com.gradle.enterprise" version "3.12.6" + id "com.gradle.enterprise" version "3.13" } gradleEnterprise { diff --git a/test/init-scripts/settings.gradle b/test/init-scripts/settings.gradle index 0cdaecf..10500d8 100644 --- a/test/init-scripts/settings.gradle +++ b/test/init-scripts/settings.gradle @@ -1,5 +1,5 @@ plugins { - id "com.gradle.enterprise" version "3.12.6" + id "com.gradle.enterprise" version "3.13" id "com.gradle.common-custom-user-data-gradle-plugin" version "1.10" } diff --git a/test/init-scripts/src/test/groovy/com/gradle/gradlebuildaction/BaseInitScriptTest.groovy b/test/init-scripts/src/test/groovy/com/gradle/gradlebuildaction/BaseInitScriptTest.groovy index 61b7c2c..427b557 100644 --- a/test/init-scripts/src/test/groovy/com/gradle/gradlebuildaction/BaseInitScriptTest.groovy +++ b/test/init-scripts/src/test/groovy/com/gradle/gradlebuildaction/BaseInitScriptTest.groovy @@ -134,7 +134,7 @@ class BaseInitScriptTest extends Specification { } else { """ plugins { - id 'com.gradle.enterprise' version '3.12.6' + id 'com.gradle.enterprise' version '3.13' } gradleEnterprise { server = '$mockScansServer.address' @@ -160,7 +160,7 @@ class BaseInitScriptTest extends Specification { } else if (gradleVersion < GradleVersion.version('6.0')) { """ plugins { - id 'com.gradle.build-scan' version '3.12.6' + id 'com.gradle.build-scan' version '3.13' } gradleEnterprise { server = '$mockScansServer.address'