[bot] Update dist directory

This commit is contained in:
bigdaz 2024-06-13 19:32:23 +00:00 committed by github-actions[bot]
parent 30c82f0068
commit 9c3430720d
10 changed files with 45 additions and 65 deletions

View file

@ -144431,19 +144431,19 @@ class BuildScanConfig {
return core.getInput('develocity-token-expiry'); return core.getInput('develocity-token-expiry');
} }
getDevelocityInjectionEnabled() { getDevelocityInjectionEnabled() {
return getMaybeBooleanInput('develocity-injection-enabled'); return getOptionalBooleanInput('develocity-injection-enabled');
} }
getDevelocityUrl() { getDevelocityUrl() {
return core.getInput('develocity-url'); return core.getInput('develocity-url');
} }
getDevelocityAllowUntrustedServer() { getDevelocityAllowUntrustedServer() {
return getMaybeBooleanInput('develocity-allow-untrusted-server'); return getOptionalBooleanInput('develocity-allow-untrusted-server');
} }
getDevelocityCaptureFileFingerprints() { getDevelocityCaptureFileFingerprints() {
return getMaybeBooleanInput('develocity-capture-file-fingerprints'); return getOptionalBooleanInput('develocity-capture-file-fingerprints');
} }
getDevelocityEnforceUrl() { getDevelocityEnforceUrl() {
return getMaybeBooleanInput('develocity-enforce-url'); return getOptionalBooleanInput('develocity-enforce-url');
} }
getDevelocityPluginVersion() { getDevelocityPluginVersion() {
return core.getInput('develocity-plugin-version'); return core.getInput('develocity-plugin-version');
@ -144559,16 +144559,12 @@ function getBooleanInput(paramName, paramDefault = false) {
} }
throw TypeError(`The value '${paramValue} is not valid for '${paramName}. Valid values are: [true, false]`); throw TypeError(`The value '${paramValue} is not valid for '${paramName}. Valid values are: [true, false]`);
} }
function getMaybeBooleanInput(paramName) { function getOptionalBooleanInput(paramName) {
const paramValue = core.getInput(paramName); const paramValue = core.getInput(paramName);
switch (paramValue?.toLowerCase().trim()) { if (paramValue === '') {
case 'false': return undefined;
return false;
case 'true':
return true;
default:
return undefined;
} }
return getBooleanInput(paramName);
} }

File diff suppressed because one or more lines are too long

View file

@ -95859,19 +95859,19 @@ class BuildScanConfig {
return core.getInput('develocity-token-expiry'); return core.getInput('develocity-token-expiry');
} }
getDevelocityInjectionEnabled() { getDevelocityInjectionEnabled() {
return getMaybeBooleanInput('develocity-injection-enabled'); return getOptionalBooleanInput('develocity-injection-enabled');
} }
getDevelocityUrl() { getDevelocityUrl() {
return core.getInput('develocity-url'); return core.getInput('develocity-url');
} }
getDevelocityAllowUntrustedServer() { getDevelocityAllowUntrustedServer() {
return getMaybeBooleanInput('develocity-allow-untrusted-server'); return getOptionalBooleanInput('develocity-allow-untrusted-server');
} }
getDevelocityCaptureFileFingerprints() { getDevelocityCaptureFileFingerprints() {
return getMaybeBooleanInput('develocity-capture-file-fingerprints'); return getOptionalBooleanInput('develocity-capture-file-fingerprints');
} }
getDevelocityEnforceUrl() { getDevelocityEnforceUrl() {
return getMaybeBooleanInput('develocity-enforce-url'); return getOptionalBooleanInput('develocity-enforce-url');
} }
getDevelocityPluginVersion() { getDevelocityPluginVersion() {
return core.getInput('develocity-plugin-version'); return core.getInput('develocity-plugin-version');
@ -95987,16 +95987,12 @@ function getBooleanInput(paramName, paramDefault = false) {
} }
throw TypeError(`The value '${paramValue} is not valid for '${paramName}. Valid values are: [true, false]`); throw TypeError(`The value '${paramValue} is not valid for '${paramName}. Valid values are: [true, false]`);
} }
function getMaybeBooleanInput(paramName) { function getOptionalBooleanInput(paramName) {
const paramValue = core.getInput(paramName); const paramValue = core.getInput(paramName);
switch (paramValue?.toLowerCase().trim()) { if (paramValue === '') {
case 'false': return undefined;
return false;
case 'true':
return true;
default:
return undefined;
} }
return getBooleanInput(paramName);
} }

File diff suppressed because one or more lines are too long

View file

@ -144431,19 +144431,19 @@ class BuildScanConfig {
return core.getInput('develocity-token-expiry'); return core.getInput('develocity-token-expiry');
} }
getDevelocityInjectionEnabled() { getDevelocityInjectionEnabled() {
return getMaybeBooleanInput('develocity-injection-enabled'); return getOptionalBooleanInput('develocity-injection-enabled');
} }
getDevelocityUrl() { getDevelocityUrl() {
return core.getInput('develocity-url'); return core.getInput('develocity-url');
} }
getDevelocityAllowUntrustedServer() { getDevelocityAllowUntrustedServer() {
return getMaybeBooleanInput('develocity-allow-untrusted-server'); return getOptionalBooleanInput('develocity-allow-untrusted-server');
} }
getDevelocityCaptureFileFingerprints() { getDevelocityCaptureFileFingerprints() {
return getMaybeBooleanInput('develocity-capture-file-fingerprints'); return getOptionalBooleanInput('develocity-capture-file-fingerprints');
} }
getDevelocityEnforceUrl() { getDevelocityEnforceUrl() {
return getMaybeBooleanInput('develocity-enforce-url'); return getOptionalBooleanInput('develocity-enforce-url');
} }
getDevelocityPluginVersion() { getDevelocityPluginVersion() {
return core.getInput('develocity-plugin-version'); return core.getInput('develocity-plugin-version');
@ -144559,16 +144559,12 @@ function getBooleanInput(paramName, paramDefault = false) {
} }
throw TypeError(`The value '${paramValue} is not valid for '${paramName}. Valid values are: [true, false]`); throw TypeError(`The value '${paramValue} is not valid for '${paramName}. Valid values are: [true, false]`);
} }
function getMaybeBooleanInput(paramName) { function getOptionalBooleanInput(paramName) {
const paramValue = core.getInput(paramName); const paramValue = core.getInput(paramName);
switch (paramValue?.toLowerCase().trim()) { if (paramValue === '') {
case 'false': return undefined;
return false;
case 'true':
return true;
default:
return undefined;
} }
return getBooleanInput(paramName);
} }

File diff suppressed because one or more lines are too long

View file

@ -141884,19 +141884,19 @@ class BuildScanConfig {
return core.getInput('develocity-token-expiry'); return core.getInput('develocity-token-expiry');
} }
getDevelocityInjectionEnabled() { getDevelocityInjectionEnabled() {
return getMaybeBooleanInput('develocity-injection-enabled'); return getOptionalBooleanInput('develocity-injection-enabled');
} }
getDevelocityUrl() { getDevelocityUrl() {
return core.getInput('develocity-url'); return core.getInput('develocity-url');
} }
getDevelocityAllowUntrustedServer() { getDevelocityAllowUntrustedServer() {
return getMaybeBooleanInput('develocity-allow-untrusted-server'); return getOptionalBooleanInput('develocity-allow-untrusted-server');
} }
getDevelocityCaptureFileFingerprints() { getDevelocityCaptureFileFingerprints() {
return getMaybeBooleanInput('develocity-capture-file-fingerprints'); return getOptionalBooleanInput('develocity-capture-file-fingerprints');
} }
getDevelocityEnforceUrl() { getDevelocityEnforceUrl() {
return getMaybeBooleanInput('develocity-enforce-url'); return getOptionalBooleanInput('develocity-enforce-url');
} }
getDevelocityPluginVersion() { getDevelocityPluginVersion() {
return core.getInput('develocity-plugin-version'); return core.getInput('develocity-plugin-version');
@ -142012,16 +142012,12 @@ function getBooleanInput(paramName, paramDefault = false) {
} }
throw TypeError(`The value '${paramValue} is not valid for '${paramName}. Valid values are: [true, false]`); throw TypeError(`The value '${paramValue} is not valid for '${paramName}. Valid values are: [true, false]`);
} }
function getMaybeBooleanInput(paramName) { function getOptionalBooleanInput(paramName) {
const paramValue = core.getInput(paramName); const paramValue = core.getInput(paramName);
switch (paramValue?.toLowerCase().trim()) { if (paramValue === '') {
case 'false': return undefined;
return false;
case 'true':
return true;
default:
return undefined;
} }
return getBooleanInput(paramName);
} }

File diff suppressed because one or more lines are too long

View file

@ -90063,19 +90063,19 @@ class BuildScanConfig {
return core.getInput('develocity-token-expiry'); return core.getInput('develocity-token-expiry');
} }
getDevelocityInjectionEnabled() { getDevelocityInjectionEnabled() {
return getMaybeBooleanInput('develocity-injection-enabled'); return getOptionalBooleanInput('develocity-injection-enabled');
} }
getDevelocityUrl() { getDevelocityUrl() {
return core.getInput('develocity-url'); return core.getInput('develocity-url');
} }
getDevelocityAllowUntrustedServer() { getDevelocityAllowUntrustedServer() {
return getMaybeBooleanInput('develocity-allow-untrusted-server'); return getOptionalBooleanInput('develocity-allow-untrusted-server');
} }
getDevelocityCaptureFileFingerprints() { getDevelocityCaptureFileFingerprints() {
return getMaybeBooleanInput('develocity-capture-file-fingerprints'); return getOptionalBooleanInput('develocity-capture-file-fingerprints');
} }
getDevelocityEnforceUrl() { getDevelocityEnforceUrl() {
return getMaybeBooleanInput('develocity-enforce-url'); return getOptionalBooleanInput('develocity-enforce-url');
} }
getDevelocityPluginVersion() { getDevelocityPluginVersion() {
return core.getInput('develocity-plugin-version'); return core.getInput('develocity-plugin-version');
@ -90191,16 +90191,12 @@ function getBooleanInput(paramName, paramDefault = false) {
} }
throw TypeError(`The value '${paramValue} is not valid for '${paramName}. Valid values are: [true, false]`); throw TypeError(`The value '${paramValue} is not valid for '${paramName}. Valid values are: [true, false]`);
} }
function getMaybeBooleanInput(paramName) { function getOptionalBooleanInput(paramName) {
const paramValue = core.getInput(paramName); const paramValue = core.getInput(paramName);
switch (paramValue?.toLowerCase().trim()) { if (paramValue === '') {
case 'false': return undefined;
return false;
case 'true':
return true;
default:
return undefined;
} }
return getBooleanInput(paramName);
} }

File diff suppressed because one or more lines are too long