Skip to content

Commit ad00852

Browse files
committed
Merge branch '6.2.x'
2 parents e6782d4 + 2101164 commit ad00852

File tree

4 files changed

+7
-11
lines changed

4 files changed

+7
-11
lines changed

.github/workflows/continuous-integration-workflow.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@ on:
99
workflow_dispatch: # Manual trigger
1010

1111
env:
12-
GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USER }}
13-
GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }}
14-
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }}
12+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }}
1513

1614
permissions:
1715
contents: read

.github/workflows/pr-build-workflow.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ name: PR Build
33
on: pull_request
44

55
env:
6-
GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USER }}
7-
GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }}
8-
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }}
6+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }}
97

108
permissions:
119
contents: read

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,10 @@ allprojects {
9797
}
9898
}
9999

100-
if (hasProperty('buildScan')) {
100+
develocity {
101101
buildScan {
102-
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
103-
termsOfServiceAgree = 'yes'
102+
termsOfUseUrl = 'https://gradle.com/help/legal-terms-of-use'
103+
termsOfUseAgree = 'yes'
104104
}
105105
}
106106

settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ pluginManagement {
55
}
66

77
plugins {
8-
id "com.gradle.enterprise" version "3.16.2"
9-
id "io.spring.ge.conventions" version "0.0.16"
8+
id "com.gradle.develocity" version "3.17.2"
9+
id "io.spring.ge.conventions" version "0.0.17"
1010
}
1111

1212
dependencyResolutionManagement {

0 commit comments

Comments
 (0)