Skip to content

Commit c1091c9

Browse files
bigdazgithub-actions[bot]
authored andcommitted
[bot] Update dist directory
1 parent d0a116f commit c1091c9

File tree

10 files changed

+266
-5
lines changed

10 files changed

+266
-5
lines changed

dist/dependency-submission/main/index.js

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144430,6 +144430,36 @@ class BuildScanConfig {
144430144430
getDevelocityTokenExpiry() {
144431144431
return core.getInput('develocity-token-expiry');
144432144432
}
144433+
getDevelocityInjectionEnabled() {
144434+
return getMaybeBooleanInput('develocity-injection-enabled');
144435+
}
144436+
getDevelocityUrl() {
144437+
return core.getInput('develocity-url');
144438+
}
144439+
getDevelocityAllowUntrustedServer() {
144440+
return getMaybeBooleanInput('develocity-allow-untrusted-server');
144441+
}
144442+
getDevelocityCaptureFileFingerprints() {
144443+
return getMaybeBooleanInput('develocity-capture-file-fingerprints');
144444+
}
144445+
getDevelocityEnforceUrl() {
144446+
return getMaybeBooleanInput('develocity-enforce-url');
144447+
}
144448+
getDevelocityPluginVersion() {
144449+
return core.getInput('develocity-plugin-version');
144450+
}
144451+
getDevelocityCcudPluginVersion() {
144452+
return core.getInput('develocity-ccud-plugin-version');
144453+
}
144454+
getGradlePluginRepositoryUrl() {
144455+
return core.getInput('gradle-plugin-repository-url');
144456+
}
144457+
getGradlePluginRepositoryUsername() {
144458+
return core.getInput('gradle-plugin-repository-username');
144459+
}
144460+
getGradlePluginRepositoryPassword() {
144461+
return core.getInput('gradle-plugin-repository-password');
144462+
}
144433144463
verifyTermsOfUseAgreement() {
144434144464
if ((this.getBuildScanTermsOfUseUrl() !== 'https://gradle.com/terms-of-service' &&
144435144465
this.getBuildScanTermsOfUseUrl() !== 'https://gradle.com/help/legal-terms-of-use') ||
@@ -144529,6 +144559,17 @@ function getBooleanInput(paramName, paramDefault = false) {
144529144559
}
144530144560
throw TypeError(`The value '${paramValue} is not valid for '${paramName}. Valid values are: [true, false]`);
144531144561
}
144562+
function getMaybeBooleanInput(paramName) {
144563+
const paramValue = core.getInput(paramName);
144564+
switch (paramValue?.toLowerCase().trim()) {
144565+
case 'false':
144566+
return false;
144567+
case 'true':
144568+
return true;
144569+
default:
144570+
return undefined;
144571+
}
144572+
}
144532144573

144533144574

144534144575
/***/ }),
@@ -145041,6 +145082,15 @@ async function setup(config) {
145041145082
maybeExportVariable('DEVELOCITY_TERMS_OF_USE_URL', config.getBuildScanTermsOfUseUrl());
145042145083
maybeExportVariable('DEVELOCITY_TERMS_OF_USE_AGREE', config.getBuildScanTermsOfUseAgree());
145043145084
}
145085+
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_ENABLED', config.getDevelocityInjectionEnabled());
145086+
maybeExportVariableNotEmpty('DEVELOCITY_URL', config.getDevelocityUrl());
145087+
maybeExportVariableNotEmpty('DEVELOCITY_ALLOW_UNTRUSTED_SERVER', config.getDevelocityAllowUntrustedServer());
145088+
maybeExportVariableNotEmpty('DEVELOCITY_CAPTURE_FILE_FINGERPRINTS', config.getDevelocityCaptureFileFingerprints());
145089+
maybeExportVariableNotEmpty('DEVELOCITY_ENFORCE_URL', config.getDevelocityEnforceUrl());
145090+
maybeExportVariableNotEmpty('DEVELOCITY_PLUGIN_VERSION', config.getDevelocityPluginVersion());
145091+
maybeExportVariableNotEmpty('GRADLE_PLUGIN_REPOSITORY_URL', config.getGradlePluginRepositoryUrl());
145092+
maybeExportVariableNotEmpty('GRADLE_PLUGIN_REPOSITORY_USERNAME', config.getGradlePluginRepositoryUsername());
145093+
maybeExportVariableNotEmpty('GRADLE_PLUGIN_REPOSITORY_PASSWORD', config.getGradlePluginRepositoryPassword());
145044145094
(0, short_lived_token_1.setupToken)(config.getDevelocityAccessKey(), config.getDevelocityTokenExpiry(), getEnv('DEVELOCITY_ENFORCE_URL'), getEnv('DEVELOCITY_URL'));
145045145095
}
145046145096
exports.setup = setup;
@@ -145052,6 +145102,11 @@ function maybeExportVariable(variableName, value) {
145052145102
core.exportVariable(variableName, value);
145053145103
}
145054145104
}
145105+
function maybeExportVariableNotEmpty(variableName, value) {
145106+
if (value !== null && value !== undefined && value !== '') {
145107+
maybeExportVariable(variableName, value);
145108+
}
145109+
}
145055145110

145056145111

145057145112
/***/ }),

dist/dependency-submission/main/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/dependency-submission/post/index.js

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95858,6 +95858,36 @@ class BuildScanConfig {
9585895858
getDevelocityTokenExpiry() {
9585995859
return core.getInput('develocity-token-expiry');
9586095860
}
95861+
getDevelocityInjectionEnabled() {
95862+
return getMaybeBooleanInput('develocity-injection-enabled');
95863+
}
95864+
getDevelocityUrl() {
95865+
return core.getInput('develocity-url');
95866+
}
95867+
getDevelocityAllowUntrustedServer() {
95868+
return getMaybeBooleanInput('develocity-allow-untrusted-server');
95869+
}
95870+
getDevelocityCaptureFileFingerprints() {
95871+
return getMaybeBooleanInput('develocity-capture-file-fingerprints');
95872+
}
95873+
getDevelocityEnforceUrl() {
95874+
return getMaybeBooleanInput('develocity-enforce-url');
95875+
}
95876+
getDevelocityPluginVersion() {
95877+
return core.getInput('develocity-plugin-version');
95878+
}
95879+
getDevelocityCcudPluginVersion() {
95880+
return core.getInput('develocity-ccud-plugin-version');
95881+
}
95882+
getGradlePluginRepositoryUrl() {
95883+
return core.getInput('gradle-plugin-repository-url');
95884+
}
95885+
getGradlePluginRepositoryUsername() {
95886+
return core.getInput('gradle-plugin-repository-username');
95887+
}
95888+
getGradlePluginRepositoryPassword() {
95889+
return core.getInput('gradle-plugin-repository-password');
95890+
}
9586195891
verifyTermsOfUseAgreement() {
9586295892
if ((this.getBuildScanTermsOfUseUrl() !== 'https://gradle.com/terms-of-service' &&
9586395893
this.getBuildScanTermsOfUseUrl() !== 'https://gradle.com/help/legal-terms-of-use') ||
@@ -95957,6 +95987,17 @@ function getBooleanInput(paramName, paramDefault = false) {
9595795987
}
9595895988
throw TypeError(`The value '${paramValue} is not valid for '${paramName}. Valid values are: [true, false]`);
9595995989
}
95990+
function getMaybeBooleanInput(paramName) {
95991+
const paramValue = core.getInput(paramName);
95992+
switch (paramValue?.toLowerCase().trim()) {
95993+
case 'false':
95994+
return false;
95995+
case 'true':
95996+
return true;
95997+
default:
95998+
return undefined;
95999+
}
96000+
}
9596096001

9596196002

9596296003
/***/ }),
@@ -96198,6 +96239,15 @@ async function setup(config) {
9619896239
maybeExportVariable('DEVELOCITY_TERMS_OF_USE_URL', config.getBuildScanTermsOfUseUrl());
9619996240
maybeExportVariable('DEVELOCITY_TERMS_OF_USE_AGREE', config.getBuildScanTermsOfUseAgree());
9620096241
}
96242+
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_ENABLED', config.getDevelocityInjectionEnabled());
96243+
maybeExportVariableNotEmpty('DEVELOCITY_URL', config.getDevelocityUrl());
96244+
maybeExportVariableNotEmpty('DEVELOCITY_ALLOW_UNTRUSTED_SERVER', config.getDevelocityAllowUntrustedServer());
96245+
maybeExportVariableNotEmpty('DEVELOCITY_CAPTURE_FILE_FINGERPRINTS', config.getDevelocityCaptureFileFingerprints());
96246+
maybeExportVariableNotEmpty('DEVELOCITY_ENFORCE_URL', config.getDevelocityEnforceUrl());
96247+
maybeExportVariableNotEmpty('DEVELOCITY_PLUGIN_VERSION', config.getDevelocityPluginVersion());
96248+
maybeExportVariableNotEmpty('GRADLE_PLUGIN_REPOSITORY_URL', config.getGradlePluginRepositoryUrl());
96249+
maybeExportVariableNotEmpty('GRADLE_PLUGIN_REPOSITORY_USERNAME', config.getGradlePluginRepositoryUsername());
96250+
maybeExportVariableNotEmpty('GRADLE_PLUGIN_REPOSITORY_PASSWORD', config.getGradlePluginRepositoryPassword());
9620196251
(0, short_lived_token_1.setupToken)(config.getDevelocityAccessKey(), config.getDevelocityTokenExpiry(), getEnv('DEVELOCITY_ENFORCE_URL'), getEnv('DEVELOCITY_URL'));
9620296252
}
9620396253
exports.setup = setup;
@@ -96209,6 +96259,11 @@ function maybeExportVariable(variableName, value) {
9620996259
core.exportVariable(variableName, value);
9621096260
}
9621196261
}
96262+
function maybeExportVariableNotEmpty(variableName, value) {
96263+
if (value !== null && value !== undefined && value !== '') {
96264+
maybeExportVariable(variableName, value);
96265+
}
96266+
}
9621296267

9621396268

9621496269
/***/ }),

dist/dependency-submission/post/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/setup-gradle/main/index.js

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144430,6 +144430,36 @@ class BuildScanConfig {
144430144430
getDevelocityTokenExpiry() {
144431144431
return core.getInput('develocity-token-expiry');
144432144432
}
144433+
getDevelocityInjectionEnabled() {
144434+
return getMaybeBooleanInput('develocity-injection-enabled');
144435+
}
144436+
getDevelocityUrl() {
144437+
return core.getInput('develocity-url');
144438+
}
144439+
getDevelocityAllowUntrustedServer() {
144440+
return getMaybeBooleanInput('develocity-allow-untrusted-server');
144441+
}
144442+
getDevelocityCaptureFileFingerprints() {
144443+
return getMaybeBooleanInput('develocity-capture-file-fingerprints');
144444+
}
144445+
getDevelocityEnforceUrl() {
144446+
return getMaybeBooleanInput('develocity-enforce-url');
144447+
}
144448+
getDevelocityPluginVersion() {
144449+
return core.getInput('develocity-plugin-version');
144450+
}
144451+
getDevelocityCcudPluginVersion() {
144452+
return core.getInput('develocity-ccud-plugin-version');
144453+
}
144454+
getGradlePluginRepositoryUrl() {
144455+
return core.getInput('gradle-plugin-repository-url');
144456+
}
144457+
getGradlePluginRepositoryUsername() {
144458+
return core.getInput('gradle-plugin-repository-username');
144459+
}
144460+
getGradlePluginRepositoryPassword() {
144461+
return core.getInput('gradle-plugin-repository-password');
144462+
}
144433144463
verifyTermsOfUseAgreement() {
144434144464
if ((this.getBuildScanTermsOfUseUrl() !== 'https://gradle.com/terms-of-service' &&
144435144465
this.getBuildScanTermsOfUseUrl() !== 'https://gradle.com/help/legal-terms-of-use') ||
@@ -144529,6 +144559,17 @@ function getBooleanInput(paramName, paramDefault = false) {
144529144559
}
144530144560
throw TypeError(`The value '${paramValue} is not valid for '${paramName}. Valid values are: [true, false]`);
144531144561
}
144562+
function getMaybeBooleanInput(paramName) {
144563+
const paramValue = core.getInput(paramName);
144564+
switch (paramValue?.toLowerCase().trim()) {
144565+
case 'false':
144566+
return false;
144567+
case 'true':
144568+
return true;
144569+
default:
144570+
return undefined;
144571+
}
144572+
}
144532144573

144533144574

144534144575
/***/ }),
@@ -144969,6 +145010,15 @@ async function setup(config) {
144969145010
maybeExportVariable('DEVELOCITY_TERMS_OF_USE_URL', config.getBuildScanTermsOfUseUrl());
144970145011
maybeExportVariable('DEVELOCITY_TERMS_OF_USE_AGREE', config.getBuildScanTermsOfUseAgree());
144971145012
}
145013+
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_ENABLED', config.getDevelocityInjectionEnabled());
145014+
maybeExportVariableNotEmpty('DEVELOCITY_URL', config.getDevelocityUrl());
145015+
maybeExportVariableNotEmpty('DEVELOCITY_ALLOW_UNTRUSTED_SERVER', config.getDevelocityAllowUntrustedServer());
145016+
maybeExportVariableNotEmpty('DEVELOCITY_CAPTURE_FILE_FINGERPRINTS', config.getDevelocityCaptureFileFingerprints());
145017+
maybeExportVariableNotEmpty('DEVELOCITY_ENFORCE_URL', config.getDevelocityEnforceUrl());
145018+
maybeExportVariableNotEmpty('DEVELOCITY_PLUGIN_VERSION', config.getDevelocityPluginVersion());
145019+
maybeExportVariableNotEmpty('GRADLE_PLUGIN_REPOSITORY_URL', config.getGradlePluginRepositoryUrl());
145020+
maybeExportVariableNotEmpty('GRADLE_PLUGIN_REPOSITORY_USERNAME', config.getGradlePluginRepositoryUsername());
145021+
maybeExportVariableNotEmpty('GRADLE_PLUGIN_REPOSITORY_PASSWORD', config.getGradlePluginRepositoryPassword());
144972145022
(0, short_lived_token_1.setupToken)(config.getDevelocityAccessKey(), config.getDevelocityTokenExpiry(), getEnv('DEVELOCITY_ENFORCE_URL'), getEnv('DEVELOCITY_URL'));
144973145023
}
144974145024
exports.setup = setup;
@@ -144980,6 +145030,11 @@ function maybeExportVariable(variableName, value) {
144980145030
core.exportVariable(variableName, value);
144981145031
}
144982145032
}
145033+
function maybeExportVariableNotEmpty(variableName, value) {
145034+
if (value !== null && value !== undefined && value !== '') {
145035+
maybeExportVariable(variableName, value);
145036+
}
145037+
}
144983145038

144984145039

144985145040
/***/ }),

dist/setup-gradle/main/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/setup-gradle/post/index.js

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141883,6 +141883,36 @@ class BuildScanConfig {
141883141883
getDevelocityTokenExpiry() {
141884141884
return core.getInput('develocity-token-expiry');
141885141885
}
141886+
getDevelocityInjectionEnabled() {
141887+
return getMaybeBooleanInput('develocity-injection-enabled');
141888+
}
141889+
getDevelocityUrl() {
141890+
return core.getInput('develocity-url');
141891+
}
141892+
getDevelocityAllowUntrustedServer() {
141893+
return getMaybeBooleanInput('develocity-allow-untrusted-server');
141894+
}
141895+
getDevelocityCaptureFileFingerprints() {
141896+
return getMaybeBooleanInput('develocity-capture-file-fingerprints');
141897+
}
141898+
getDevelocityEnforceUrl() {
141899+
return getMaybeBooleanInput('develocity-enforce-url');
141900+
}
141901+
getDevelocityPluginVersion() {
141902+
return core.getInput('develocity-plugin-version');
141903+
}
141904+
getDevelocityCcudPluginVersion() {
141905+
return core.getInput('develocity-ccud-plugin-version');
141906+
}
141907+
getGradlePluginRepositoryUrl() {
141908+
return core.getInput('gradle-plugin-repository-url');
141909+
}
141910+
getGradlePluginRepositoryUsername() {
141911+
return core.getInput('gradle-plugin-repository-username');
141912+
}
141913+
getGradlePluginRepositoryPassword() {
141914+
return core.getInput('gradle-plugin-repository-password');
141915+
}
141886141916
verifyTermsOfUseAgreement() {
141887141917
if ((this.getBuildScanTermsOfUseUrl() !== 'https://gradle.com/terms-of-service' &&
141888141918
this.getBuildScanTermsOfUseUrl() !== 'https://gradle.com/help/legal-terms-of-use') ||
@@ -141982,6 +142012,17 @@ function getBooleanInput(paramName, paramDefault = false) {
141982142012
}
141983142013
throw TypeError(`The value '${paramValue} is not valid for '${paramName}. Valid values are: [true, false]`);
141984142014
}
142015+
function getMaybeBooleanInput(paramName) {
142016+
const paramValue = core.getInput(paramName);
142017+
switch (paramValue?.toLowerCase().trim()) {
142018+
case 'false':
142019+
return false;
142020+
case 'true':
142021+
return true;
142022+
default:
142023+
return undefined;
142024+
}
142025+
}
141985142026

141986142027

141987142028
/***/ }),
@@ -142422,6 +142463,15 @@ async function setup(config) {
142422142463
maybeExportVariable('DEVELOCITY_TERMS_OF_USE_URL', config.getBuildScanTermsOfUseUrl());
142423142464
maybeExportVariable('DEVELOCITY_TERMS_OF_USE_AGREE', config.getBuildScanTermsOfUseAgree());
142424142465
}
142466+
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_ENABLED', config.getDevelocityInjectionEnabled());
142467+
maybeExportVariableNotEmpty('DEVELOCITY_URL', config.getDevelocityUrl());
142468+
maybeExportVariableNotEmpty('DEVELOCITY_ALLOW_UNTRUSTED_SERVER', config.getDevelocityAllowUntrustedServer());
142469+
maybeExportVariableNotEmpty('DEVELOCITY_CAPTURE_FILE_FINGERPRINTS', config.getDevelocityCaptureFileFingerprints());
142470+
maybeExportVariableNotEmpty('DEVELOCITY_ENFORCE_URL', config.getDevelocityEnforceUrl());
142471+
maybeExportVariableNotEmpty('DEVELOCITY_PLUGIN_VERSION', config.getDevelocityPluginVersion());
142472+
maybeExportVariableNotEmpty('GRADLE_PLUGIN_REPOSITORY_URL', config.getGradlePluginRepositoryUrl());
142473+
maybeExportVariableNotEmpty('GRADLE_PLUGIN_REPOSITORY_USERNAME', config.getGradlePluginRepositoryUsername());
142474+
maybeExportVariableNotEmpty('GRADLE_PLUGIN_REPOSITORY_PASSWORD', config.getGradlePluginRepositoryPassword());
142425142475
(0, short_lived_token_1.setupToken)(config.getDevelocityAccessKey(), config.getDevelocityTokenExpiry(), getEnv('DEVELOCITY_ENFORCE_URL'), getEnv('DEVELOCITY_URL'));
142426142476
}
142427142477
exports.setup = setup;
@@ -142433,6 +142483,11 @@ function maybeExportVariable(variableName, value) {
142433142483
core.exportVariable(variableName, value);
142434142484
}
142435142485
}
142486+
function maybeExportVariableNotEmpty(variableName, value) {
142487+
if (value !== null && value !== undefined && value !== '') {
142488+
maybeExportVariable(variableName, value);
142489+
}
142490+
}
142436142491

142437142492

142438142493
/***/ }),

dist/setup-gradle/post/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/wrapper-validation/main/index.js

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90062,6 +90062,36 @@ class BuildScanConfig {
9006290062
getDevelocityTokenExpiry() {
9006390063
return core.getInput('develocity-token-expiry');
9006490064
}
90065+
getDevelocityInjectionEnabled() {
90066+
return getMaybeBooleanInput('develocity-injection-enabled');
90067+
}
90068+
getDevelocityUrl() {
90069+
return core.getInput('develocity-url');
90070+
}
90071+
getDevelocityAllowUntrustedServer() {
90072+
return getMaybeBooleanInput('develocity-allow-untrusted-server');
90073+
}
90074+
getDevelocityCaptureFileFingerprints() {
90075+
return getMaybeBooleanInput('develocity-capture-file-fingerprints');
90076+
}
90077+
getDevelocityEnforceUrl() {
90078+
return getMaybeBooleanInput('develocity-enforce-url');
90079+
}
90080+
getDevelocityPluginVersion() {
90081+
return core.getInput('develocity-plugin-version');
90082+
}
90083+
getDevelocityCcudPluginVersion() {
90084+
return core.getInput('develocity-ccud-plugin-version');
90085+
}
90086+
getGradlePluginRepositoryUrl() {
90087+
return core.getInput('gradle-plugin-repository-url');
90088+
}
90089+
getGradlePluginRepositoryUsername() {
90090+
return core.getInput('gradle-plugin-repository-username');
90091+
}
90092+
getGradlePluginRepositoryPassword() {
90093+
return core.getInput('gradle-plugin-repository-password');
90094+
}
9006590095
verifyTermsOfUseAgreement() {
9006690096
if ((this.getBuildScanTermsOfUseUrl() !== 'https://gradle.com/terms-of-service' &&
9006790097
this.getBuildScanTermsOfUseUrl() !== 'https://gradle.com/help/legal-terms-of-use') ||
@@ -90161,6 +90191,17 @@ function getBooleanInput(paramName, paramDefault = false) {
9016190191
}
9016290192
throw TypeError(`The value '${paramValue} is not valid for '${paramName}. Valid values are: [true, false]`);
9016390193
}
90194+
function getMaybeBooleanInput(paramName) {
90195+
const paramValue = core.getInput(paramName);
90196+
switch (paramValue?.toLowerCase().trim()) {
90197+
case 'false':
90198+
return false;
90199+
case 'true':
90200+
return true;
90201+
default:
90202+
return undefined;
90203+
}
90204+
}
9016490205

9016590206

9016690207
/***/ }),

dist/wrapper-validation/main/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)