Skip to content

Commit 1d2ea6e

Browse files
bot-githubactionbigdaz
authored andcommitted
Bump references to Develocity Gradle plugin from 3.17.4 to 3.17.5
1 parent 114c1c2 commit 1d2ea6e

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

.github/workflow-samples/groovy-dsl/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "com.gradle.develocity" version "3.17.4"
2+
id "com.gradle.develocity" version "3.17.5"
33
id "com.gradle.common-custom-user-data-gradle-plugin" version "2.0.1"
44
}
55

.github/workflow-samples/kotlin-dsl/settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id("com.gradle.develocity") version "3.17.4"
2+
id("com.gradle.develocity") version "3.17.5"
33
id("com.gradle.common-custom-user-data-gradle-plugin") version "2.0.1"
44
}
55

.github/workflow-samples/no-wrapper-gradle-5/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "com.gradle.develocity" version "3.17.4"
2+
id "com.gradle.develocity" version "3.17.5"
33
}
44

55
develocity {

.github/workflow-samples/no-wrapper/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "com.gradle.develocity" version "3.17.4"
2+
id "com.gradle.develocity" version "3.17.5"
33
}
44

55
develocity {

.github/workflow-samples/non-executable-wrapper/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "com.gradle.develocity" version "3.17.4"
2+
id "com.gradle.develocity" version "3.17.5"
33
}
44

55
develocity {

docs/setup-gradle.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -721,10 +721,10 @@ Here's a minimal example:
721721
env:
722722
DEVELOCITY_INJECTION_ENABLED: true
723723
DEVELOCITY_URL: https://develocity.your-server.com
724-
DEVELOCITY_PLUGIN_VERSION: 3.17.4
724+
DEVELOCITY_PLUGIN_VERSION: 3.17.5
725725
```
726726

727-
This configuration will automatically apply `v3.17.4` of the [Develocity Gradle plugin](https://docs.gradle.com/develocity/gradle-plugin/), and publish build scans to https://develocity.your-server.com.
727+
This configuration will automatically apply `v3.17.5` of the [Develocity Gradle plugin](https://docs.gradle.com/develocity/gradle-plugin/), and publish build scans to https://develocity.your-server.com.
728728

729729
This example assumes that the `develocity.your-server.com` server allows anonymous publishing of build scans.
730730
In the likely scenario that your Develocity server requires authentication, you will also need to pass a valid [Develocity access key](https://docs.gradle.com/develocity/gradle-plugin/#via_environment_variable) taken from a secret:

sources/src/develocity/build-scan.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export async function setup(config: BuildScanConfig): Promise<void> {
77
maybeExportVariable('DEVELOCITY_AUTO_INJECTION_CUSTOM_VALUE', 'gradle-actions')
88
if (config.getBuildScanPublishEnabled()) {
99
maybeExportVariable('DEVELOCITY_INJECTION_ENABLED', 'true')
10-
maybeExportVariable('DEVELOCITY_PLUGIN_VERSION', '3.17.4')
10+
maybeExportVariable('DEVELOCITY_PLUGIN_VERSION', '3.17.5')
1111
maybeExportVariable('DEVELOCITY_CCUD_PLUGIN_VERSION', '2.0')
1212
maybeExportVariable('DEVELOCITY_TERMS_OF_USE_URL', config.getBuildScanTermsOfUseUrl())
1313
maybeExportVariable('DEVELOCITY_TERMS_OF_USE_AGREE', config.getBuildScanTermsOfUseAgree())

sources/test/init-scripts/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "com.gradle.develocity" version "3.17.4"
2+
id "com.gradle.develocity" version "3.17.5"
33
id "com.gradle.common-custom-user-data-gradle-plugin" version "2.0.1"
44
}
55

sources/test/init-scripts/src/test/groovy/com/gradle/gradlebuildaction/BaseInitScriptTest.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import java.nio.file.Files
1616
import java.util.zip.GZIPOutputStream
1717

1818
class BaseInitScriptTest extends Specification {
19-
static final String DEVELOCITY_PLUGIN_VERSION = '3.17.4'
19+
static final String DEVELOCITY_PLUGIN_VERSION = '3.17.5'
2020
static final String CCUD_PLUGIN_VERSION = '2.0.1'
2121

2222
static final TestGradleVersion GRADLE_3_X = new TestGradleVersion(GradleVersion.version('3.5.1'), 7, 9)

sources/test/init-scripts/src/test/groovy/com/gradle/gradlebuildaction/TestBuildResultRecorder.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ class TestBuildResultRecorder extends BaseInitScriptTest {
190190
when:
191191
settingsFile.text = """
192192
plugins {
193-
id 'com.gradle.develocity' version '3.17.4' apply(false)
193+
id 'com.gradle.develocity' version '3.17.5' apply(false)
194194
}
195195
gradle.settingsEvaluated {
196196
apply plugin: 'com.gradle.develocity'

0 commit comments

Comments
 (0)