Skip to content

Commit 089bfb1

Browse files
bot-githubactionbigdaz
authored andcommitted
Bump references to Develocity Gradle plugin from 3.17.6 to 3.18
1 parent ca7f3fa commit 089bfb1

File tree

11 files changed

+16
-16
lines changed

11 files changed

+16
-16
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.6"
2+
id "com.gradle.develocity" version "3.18"
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.6"
2+
id("com.gradle.develocity") version "3.18"
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.6"
2+
id "com.gradle.develocity" version "3.18"
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.6"
2+
id "com.gradle.develocity" version "3.18"
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.6"
2+
id "com.gradle.develocity" version "3.18"
33
}
44

55
develocity {

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

Lines changed: 5 additions & 5 deletions
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.17.6]
36+
plugin-version: [3.16.2, 3.18]
3737
include:
3838
- plugin-version: 3.16.2
3939
accessKeyEnv: GRADLE_ENTERPRISE_ACCESS_KEY
40-
- plugin-version: 3.17.6
40+
- plugin-version: 3.18
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.17.6]
87+
plugin-version: [3.16.2, 3.18]
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.17.6 ]
136+
plugin-version: [ 3.16.2, 3.18 ]
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.17.6 ]
172+
plugin-version: [ 3.16.2, 3.18 ]
173173
runs-on: ${{ matrix.os }}
174174
steps:
175175
- name: Checkout sources

docs/setup-gradle.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -749,7 +749,7 @@ Here's a minimal example:
749749
run: ./gradlew build
750750
```
751751

752-
This configuration will automatically apply `v3.17.6` of the [Develocity Gradle plugin](https://docs.gradle.com/develocity/gradle-plugin/), and publish build scans to https://develocity.your-server.com.
752+
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.
753753

754754
This example assumes that the `develocity.your-server.com` server allows anonymous publishing of build scans.
755755
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:
@@ -821,7 +821,7 @@ Here's an example using the env vars:
821821
env:
822822
DEVELOCITY_INJECTION_ENABLED: true
823823
DEVELOCITY_URL: https://develocity.your-server.com
824-
DEVELOCITY_PLUGIN_VERSION: 3.17.6
824+
DEVELOCITY_PLUGIN_VERSION: 3.18
825825
```
826826

827827
## Publishing to scans.gradle.com

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.6')
10+
maybeExportVariable('DEVELOCITY_PLUGIN_VERSION', '3.18')
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.6"
2+
id "com.gradle.develocity" version "3.18"
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.6'
19+
static final String DEVELOCITY_PLUGIN_VERSION = '3.18'
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
@@ -196,7 +196,7 @@ class TestBuildResultRecorder extends BaseInitScriptTest {
196196
when:
197197
settingsFile.text = """
198198
plugins {
199-
id 'com.gradle.develocity' version '3.17.6' apply(false)
199+
id 'com.gradle.develocity' version '3.18' apply(false)
200200
}
201201
gradle.settingsEvaluated {
202202
apply plugin: 'com.gradle.develocity'

0 commit comments

Comments
 (0)