File tree Expand file tree Collapse file tree 14 files changed +70
-17
lines changed
capture-build-scan-url-maven-extension
fetch-build-scan-data-cmdline-tool
scripts/gradle/gradle-init-scripts Expand file tree Collapse file tree 14 files changed +70
-17
lines changed Original file line number Diff line number Diff line change
1
+ # Disable sign-off check for members of the Gradle GitHub organization
2
+ require :
3
+ members : false
Original file line number Diff line number Diff line change 7
7
name : Verification
8
8
runs-on : ubuntu-latest
9
9
env :
10
- GRADLE_ENTERPRISE_ACCESS_KEY : ${{ secrets.GE_ACCESS_TOKEN }}
10
+ GRADLE_ENTERPRISE_ACCESS_KEY : ${{ secrets.GE_SOLUTIONS_ACCESS_TOKEN }}
11
11
steps :
12
12
- name : Checkout
13
13
uses : actions/checkout@v2
Original file line number Diff line number Diff line change 31
31
run :
32
32
shell : ${{ matrix.shell }} {0}
33
33
env :
34
- GRADLE_ENTERPRISE_ACCESS_KEY : ${{ secrets.GE_ACCESS_TOKEN }}
34
+ GRADLE_ENTERPRISE_ACCESS_KEY : ${{ secrets.GE_SOLUTIONS_ACCESS_TOKEN }}
35
35
WSLENV : GRADLE_ENTERPRISE_ACCESS_KEY
36
36
steps :
37
37
- name : Set up WSL
Original file line number Diff line number Diff line change 11
11
name : Release
12
12
runs-on : ubuntu-latest
13
13
env :
14
- GRADLE_ENTERPRISE_ACCESS_KEY : ${{ secrets.GE_ACCESS_TOKEN }}
14
+ GRADLE_ENTERPRISE_ACCESS_KEY : ${{ secrets.GE_SOLUTIONS_ACCESS_TOKEN }}
15
15
steps :
16
16
- name : Checkout
17
17
uses : actions/checkout@v2
Original file line number Diff line number Diff line change 13
13
name : Release
14
14
runs-on : ubuntu-latest
15
15
env :
16
- GRADLE_ENTERPRISE_ACCESS_KEY : ${{ secrets.GE_ACCESS_TOKEN }}
16
+ GRADLE_ENTERPRISE_ACCESS_KEY : ${{ secrets.GE_SOLUTIONS_ACCESS_TOKEN }}
17
17
steps :
18
18
- name : Checkout
19
19
uses : actions/checkout@v2
Original file line number Diff line number Diff line change
1
+ name : Execute Wrapper Upgrade
2
+
3
+ on :
4
+ schedule :
5
+ - cron : ' 0 2 * * *'
6
+ workflow_dispatch :
7
+
8
+ jobs :
9
+ upgrade_wrapper :
10
+ name : Execution
11
+ runs-on : ubuntu-latest
12
+ env :
13
+ GRADLE_ENTERPRISE_ACCESS_KEY : ${{ secrets.GE_SOLUTIONS_ACCESS_TOKEN }}
14
+ steps :
15
+ - name : Set up Git configuration
16
+ env :
17
+ TOKEN : ${{ secrets.GITHUB_TOKEN }}
18
+ run : git config --global url."https://unused-username:${TOKEN}@github.com/".insteadOf "https://github.com/"
19
+ - name : Import GPG key
20
+ uses : crazy-max/ghaction-import-gpg@cb4264d3319acaa2bea23d51ef67f80b4f775013
21
+ with :
22
+ gpg_private_key : ${{ secrets.GH_BOT_PGP_PRIVATE_KEY }}
23
+ passphrase : ${{ secrets.GH_BOT_PGP_PASSPHRASE }}
24
+ git_user_signingkey : true
25
+ git_commit_gpgsign : true
26
+ git_config_global : true
27
+ - name : Checkout
28
+ uses : actions/checkout@v2
29
+ - name : Set up JDK 11
30
+ uses : actions/setup-java@v2
31
+ with :
32
+ java-version : ' 11'
33
+ distribution : ' adopt'
34
+ - name : Upgrade Wrappers
35
+ uses : gradle/gradle-build-action@v2
36
+ with :
37
+ arguments : ' clean upgradeGradleWrapperAll --continue'
38
+ env :
39
+ WRAPPER_UPGRADE_GIT_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 2
2
> - _ [ Gradle Enterprise Build Configuration Samples] [ ge-build-config-samples ] _
3
3
> - _ [ Gradle Enterprise Build Optimization Experiments] [ ge-build-optimization-experiments ] _
4
4
> - _ [ Gradle Enterprise Build Validation Scripts] [ ge-build-validation-scripts ] (this repository)_
5
- > - _ [ Common Custom User Data Gradle Plugin] [ ccud-gradle-plugin ] _
6
5
> - _ [ Common Custom User Data Maven Extension] [ ccud-maven-extension ] _
6
+ > - _ [ Common Custom User Data Gradle Plugin] [ ccud-gradle-plugin ] _
7
7
> - _ [ Android Cache Fix Gradle Plugin] [ android-cache-fix-plugin ] _
8
+ > - _ [ Wrapper Upgrade Gradle Plugin] [ wrapper-upgrade-gradle-plugin ] _
8
9
9
10
# Gradle Enterprise Build Validation Scripts
10
11
@@ -46,5 +47,6 @@ The Gradle Enterprise build validation scripts are open-source software released
46
47
[ ccud-gradle-plugin ] : https://github.com/gradle/common-custom-user-data-gradle-plugin
47
48
[ ccud-maven-extension ] : https://github.com/gradle/common-custom-user-data-maven-extension
48
49
[ android-cache-fix-plugin ] : https://github.com/gradle/android-cache-fix-gradle-plugin
50
+ [ wrapper-upgrade-gradle-plugin ] : https://github.com/gradle/wrapper-upgrade-gradle-plugin
49
51
[ gradle-enterprise ] : https://gradle.com/enterprise
50
52
[ apache-license ] : https://www.apache.org/licenses/LICENSE-2.0.html
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ plugins {
6
6
id(" com.felipefzdz.gradle.shellcheck" ) version " 1.4.6"
7
7
id(" com.github.breadmoirai.github-release" ) version " 2.2.12"
8
8
id(" org.gradle.crypto.checksum" ) version " 1.4.0"
9
+ id(" org.gradle.wrapper-upgrade" ) version " 0.10.1"
9
10
}
10
11
11
12
repositories {
@@ -41,7 +42,7 @@ dependencies {
41
42
argbash(" argbash:argbash:2.10.0@zip" )
42
43
commonComponents(project(path = " :fetch-build-scan-data-cmdline-tool" , configuration = " shadow" ))
43
44
mavenComponents(project(" :capture-build-scan-url-maven-extension" ))
44
- mavenComponents(" com.gradle:gradle-enterprise-maven-extension:1.12.4 " )
45
+ mavenComponents(" com.gradle:gradle-enterprise-maven-extension:1.13.1 " )
45
46
mavenComponents(" com.gradle:common-custom-user-data-maven-extension:1.10.1" )
46
47
}
47
48
@@ -50,6 +51,14 @@ shellcheck {
50
51
shellcheckVersion = " v0.7.2"
51
52
}
52
53
54
+ wrapperUpgrade {
55
+ gradle {
56
+ create(" gradle-enterprise-build-validation-scripts" ) {
57
+ repo.set(" gradle/gradle-enterprise-build-validation-scripts" )
58
+ }
59
+ }
60
+ }
61
+
53
62
val unpackArgbash = tasks.register<Copy >(" unpackArgbash" ) {
54
63
group = " argbash"
55
64
description = " Unpacks Argbash."
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ repositories {
7
7
}
8
8
9
9
dependencies {
10
- compileOnly(" org.apache.maven:maven-core:3.8.4 " )
10
+ compileOnly(" org.apache.maven:maven-core:3.8.5 " )
11
11
compileOnly(" org.codehaus.plexus:plexus-component-annotations:2.1.1" )
12
- compileOnly(" com.gradle:gradle-enterprise-maven-extension:1.12.4 " )
12
+ compileOnly(" com.gradle:gradle-enterprise-maven-extension:1.13.1 " )
13
13
}
14
14
15
15
description = " Maven extension to capture the build scan URL"
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ dependencies {
13
13
implementation(" com.squareup.okhttp3:okhttp" )
14
14
implementation(" com.squareup.okhttp3:okhttp-sse" )
15
15
16
- implementation(platform(" com.fasterxml.jackson:jackson-bom:2.13.2" ))
17
- implementation(" com.fasterxml.jackson.core:jackson-databind:2.13.2" )
16
+ implementation(platform(" com.fasterxml.jackson:jackson-bom:2.13.2.20220328 " ))
17
+ implementation(" com.fasterxml.jackson.core:jackson-databind:2.13.2.2 " )
18
18
19
19
implementation(" com.google.guava:guava:31.1-jre" )
20
20
implementation(" info.picocli:picocli:4.6.3" )
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import org.gradle.util.GradleVersion
2
2
import java.nio.charset.StandardCharsets ;
3
3
4
4
initscript {
5
- def gradleEnterprisePluginVersion = " 3.8.1 "
5
+ def gradleEnterprisePluginVersion = " 3.9 "
6
6
7
7
repositories {
8
8
gradlePluginPortal()
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ import com.gradle.CommonCustomUserDataGradlePlugin
4
4
import org.gradle.util.GradleVersion
5
5
6
6
initscript {
7
- def gradleEnterprisePluginVersion = " 3.8.1 "
8
- def commonCustomUserDataPluginVersion = " 1.6.3 "
7
+ def gradleEnterprisePluginVersion = " 3.9 "
8
+ def commonCustomUserDataPluginVersion = " 1.6.5 "
9
9
10
10
repositories {
11
11
gradlePluginPortal()
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionSha256Sum =8cc27038d5dbd815759851ba53e70cf62e481b87494cc97cfd97982ada5ba634
4
- distributionUrl =https\://services.gradle.org/distributions/gradle-7.4-bin.zip
3
+ distributionSha256Sum =29e49b10984e585d8118b7d0bc452f944e386458df27371b49b4ac1dec4b7fda
4
+ distributionUrl =https\://services.gradle.org/distributions/gradle-7.4.2 -bin.zip
5
5
zipStoreBase =GRADLE_USER_HOME
6
6
zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change 1
1
import com.gradle.enterprise.gradleplugin.internal.extension.BuildScanExtensionWithHiddenFeatures
2
2
3
3
plugins {
4
- id(" com.gradle.enterprise" ) version " 3.8.1 "
5
- id(" com.gradle.common-custom-user-data-gradle-plugin" ) version " 1.6.3 "
4
+ id(" com.gradle.enterprise" ) version " 3.9 "
5
+ id(" com.gradle.common-custom-user-data-gradle-plugin" ) version " 1.6.5 "
6
6
}
7
7
8
8
rootProject.name = " build-validation"
You can’t perform that action at this time.
0 commit comments