Skip to content

Commit 5fe9264

Browse files
bot-githubactionbigdaz
authored andcommitted
Bump references to Develocity Gradle plugin from 3.18 to 3.18.1
1 parent 29d4d80 commit 5fe9264

File tree

11 files changed

+16
-16
lines changed

11 files changed

+16
-16
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "com.gradle.develocity" version "3.18"
2+
id "com.gradle.develocity" version "3.18.1"
33
id "com.gradle.common-custom-user-data-gradle-plugin" version "2.0.1"
44
}
55

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id("com.gradle.develocity") version "3.18"
2+
id("com.gradle.develocity") version "3.18.1"
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "com.gradle.develocity" version "3.18"
2+
id "com.gradle.develocity" version "3.18.1"
33
}
44

55
develocity {

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "com.gradle.develocity" version "3.18"
2+
id "com.gradle.develocity" version "3.18.1"
33
}
44

55
develocity {

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "com.gradle.develocity" version "3.18"
2+
id "com.gradle.develocity" version "3.18.1"
33
}
44

55
develocity {

.github/workflows/integ-test-inject-develocity.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ jobs:
3333
matrix:
3434
gradle: [current, 7.6.2, 6.9.4, 5.6.4]
3535
os: ${{fromJSON(inputs.runner-os)}}
36-
plugin-version: [3.16.2, 3.18]
36+
plugin-version: [3.16.2, 3.18.1]
3737
include:
3838
- plugin-version: 3.16.2
3939
accessKeyEnv: GRADLE_ENTERPRISE_ACCESS_KEY
40-
- plugin-version: 3.18
40+
- plugin-version: 3.18.1
4141
accessKeyEnv: DEVELOCITY_ACCESS_KEY
4242

4343
runs-on: ${{ matrix.os }}
@@ -84,7 +84,7 @@ jobs:
8484
matrix:
8585
gradle: [current, 7.6.2, 6.9.4, 5.6.4]
8686
os: ${{fromJSON(inputs.runner-os)}}
87-
plugin-version: [3.16.2, 3.18]
87+
plugin-version: [3.16.2, 3.18.1]
8888
runs-on: ${{ matrix.os }}
8989
steps:
9090
- name: Checkout sources
@@ -133,7 +133,7 @@ jobs:
133133
matrix:
134134
gradle: [ current, 7.6.2, 6.9.4, 5.6.4 ]
135135
os: ${{fromJSON(inputs.runner-os)}}
136-
plugin-version: [ 3.16.2, 3.18 ]
136+
plugin-version: [ 3.16.2, 3.18.1 ]
137137
runs-on: ubuntu-latest
138138
steps:
139139
- name: Checkout sources
@@ -169,7 +169,7 @@ jobs:
169169
matrix:
170170
gradle: [ current, 7.6.2, 6.9.4, 5.6.4 ]
171171
os: ${{fromJSON(inputs.runner-os)}}
172-
plugin-version: [ 3.16.2, 3.18 ]
172+
plugin-version: [ 3.16.2, 3.18.1 ]
173173
runs-on: ${{ matrix.os }}
174174
steps:
175175
- name: Checkout sources

docs/setup-gradle.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -841,7 +841,7 @@ Here's a minimal example:
841841
run: ./gradlew build
842842
```
843843

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

846846
This example assumes that the `develocity.your-server.com` server allows anonymous publishing of build scans.
847847
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:
@@ -907,7 +907,7 @@ Here's an example using the env vars:
907907
DEVELOCITY_INJECTION_ENABLED: true
908908
DEVELOCITY_URL: https://develocity.your-server.com
909909
DEVELOCITY_ENFORCE_URL: true
910-
DEVELOCITY_PLUGIN_VERSION: "3.18"
910+
DEVELOCITY_PLUGIN_VERSION: "3.18.1"
911911
DEVELOCITY_CCUD_PLUGIN_VERSION: "2.0.2"
912912
```
913913

sources/src/develocity/build-scan.ts

+1-1
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.18')
10+
maybeExportVariable('DEVELOCITY_PLUGIN_VERSION', '3.18.1')
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "com.gradle.develocity" version "3.18"
2+
id "com.gradle.develocity" version "3.18.1"
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

+1-1
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.18'
19+
static final String DEVELOCITY_PLUGIN_VERSION = '3.18.1'
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ class TestBuildResultRecorder extends BaseInitScriptTest {
196196
when:
197197
settingsFile.text = """
198198
plugins {
199-
id 'com.gradle.develocity' version '3.18' apply(false)
199+
id 'com.gradle.develocity' version '3.18.1' apply(false)
200200
}
201201
gradle.settingsEvaluated {
202202
apply plugin: 'com.gradle.develocity'

0 commit comments

Comments
 (0)