Skip to content

Commit

Permalink
Bump Gradle Enterprise plugin version
Browse files Browse the repository at this point in the history
  • Loading branch information
bigdaz committed May 29, 2023
1 parent 2bf6bc3 commit 680037c
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflow-samples/groovy-dsl/settings.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "com.gradle.enterprise" version "3.13.2"
id "com.gradle.enterprise" version "3.13.3"
id "com.gradle.common-custom-user-data-gradle-plugin" version "1.10"
}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflow-samples/kotlin-dsl/settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("com.gradle.enterprise") version "3.13.2"
id("com.gradle.enterprise") version "3.13.3"
id("com.gradle.common-custom-user-data-gradle-plugin") version "1.10"
}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflow-samples/no-wrapper-gradle-5/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "com.gradle.build-scan" version "3.13.2"
id "com.gradle.build-scan" version "3.13.3"
}

gradleEnterprise {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflow-samples/no-wrapper/settings.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "com.gradle.enterprise" version "3.13.2"
id "com.gradle.enterprise" version "3.13.3"
}

gradleEnterprise {
Expand Down
2 changes: 1 addition & 1 deletion test/init-scripts/settings.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "com.gradle.enterprise" version "3.13.2"
id "com.gradle.enterprise" version "3.13.3"
id "com.gradle.common-custom-user-data-gradle-plugin" version "1.10"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class BaseInitScriptTest extends Specification {
} else {
"""
plugins {
id 'com.gradle.enterprise' version '3.13.2'
id 'com.gradle.enterprise' version '3.13.3'
}
gradleEnterprise {
server = '$mockScansServer.address'
Expand All @@ -163,7 +163,7 @@ class BaseInitScriptTest extends Specification {
} else if (gradleVersion < GradleVersion.version('6.0')) {
"""
plugins {
id 'com.gradle.build-scan' version '3.13.2'
id 'com.gradle.build-scan' version '3.13.3'
}
gradleEnterprise {
server = '$mockScansServer.address'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class TestBuildResultRecorder extends BaseInitScriptTest {
when:
settingsFile.text = """
plugins {
id 'com.gradle.enterprise' version '3.13.2' apply(false)
id 'com.gradle.enterprise' version '3.13.3' apply(false)
}
gradle.settingsEvaluated {
apply plugin: 'com.gradle.enterprise'
Expand Down

0 comments on commit 680037c

Please sign in to comment.