mirror of
https://github.com/gradle/actions
synced 2024-11-23 18:02:13 +00:00
[bot] Update dist directory
This commit is contained in:
parent
30c82f0068
commit
9c3430720d
10 changed files with 45 additions and 65 deletions
20
dist/dependency-submission/main/index.js
vendored
20
dist/dependency-submission/main/index.js
vendored
|
@ -144431,19 +144431,19 @@ class BuildScanConfig {
|
|||
return core.getInput('develocity-token-expiry');
|
||||
}
|
||||
getDevelocityInjectionEnabled() {
|
||||
return getMaybeBooleanInput('develocity-injection-enabled');
|
||||
return getOptionalBooleanInput('develocity-injection-enabled');
|
||||
}
|
||||
getDevelocityUrl() {
|
||||
return core.getInput('develocity-url');
|
||||
}
|
||||
getDevelocityAllowUntrustedServer() {
|
||||
return getMaybeBooleanInput('develocity-allow-untrusted-server');
|
||||
return getOptionalBooleanInput('develocity-allow-untrusted-server');
|
||||
}
|
||||
getDevelocityCaptureFileFingerprints() {
|
||||
return getMaybeBooleanInput('develocity-capture-file-fingerprints');
|
||||
return getOptionalBooleanInput('develocity-capture-file-fingerprints');
|
||||
}
|
||||
getDevelocityEnforceUrl() {
|
||||
return getMaybeBooleanInput('develocity-enforce-url');
|
||||
return getOptionalBooleanInput('develocity-enforce-url');
|
||||
}
|
||||
getDevelocityPluginVersion() {
|
||||
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]`);
|
||||
}
|
||||
function getMaybeBooleanInput(paramName) {
|
||||
function getOptionalBooleanInput(paramName) {
|
||||
const paramValue = core.getInput(paramName);
|
||||
switch (paramValue?.toLowerCase().trim()) {
|
||||
case 'false':
|
||||
return false;
|
||||
case 'true':
|
||||
return true;
|
||||
default:
|
||||
return undefined;
|
||||
if (paramValue === '') {
|
||||
return undefined;
|
||||
}
|
||||
return getBooleanInput(paramName);
|
||||
}
|
||||
|
||||
|
||||
|
|
2
dist/dependency-submission/main/index.js.map
vendored
2
dist/dependency-submission/main/index.js.map
vendored
File diff suppressed because one or more lines are too long
20
dist/dependency-submission/post/index.js
vendored
20
dist/dependency-submission/post/index.js
vendored
|
@ -95859,19 +95859,19 @@ class BuildScanConfig {
|
|||
return core.getInput('develocity-token-expiry');
|
||||
}
|
||||
getDevelocityInjectionEnabled() {
|
||||
return getMaybeBooleanInput('develocity-injection-enabled');
|
||||
return getOptionalBooleanInput('develocity-injection-enabled');
|
||||
}
|
||||
getDevelocityUrl() {
|
||||
return core.getInput('develocity-url');
|
||||
}
|
||||
getDevelocityAllowUntrustedServer() {
|
||||
return getMaybeBooleanInput('develocity-allow-untrusted-server');
|
||||
return getOptionalBooleanInput('develocity-allow-untrusted-server');
|
||||
}
|
||||
getDevelocityCaptureFileFingerprints() {
|
||||
return getMaybeBooleanInput('develocity-capture-file-fingerprints');
|
||||
return getOptionalBooleanInput('develocity-capture-file-fingerprints');
|
||||
}
|
||||
getDevelocityEnforceUrl() {
|
||||
return getMaybeBooleanInput('develocity-enforce-url');
|
||||
return getOptionalBooleanInput('develocity-enforce-url');
|
||||
}
|
||||
getDevelocityPluginVersion() {
|
||||
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]`);
|
||||
}
|
||||
function getMaybeBooleanInput(paramName) {
|
||||
function getOptionalBooleanInput(paramName) {
|
||||
const paramValue = core.getInput(paramName);
|
||||
switch (paramValue?.toLowerCase().trim()) {
|
||||
case 'false':
|
||||
return false;
|
||||
case 'true':
|
||||
return true;
|
||||
default:
|
||||
return undefined;
|
||||
if (paramValue === '') {
|
||||
return undefined;
|
||||
}
|
||||
return getBooleanInput(paramName);
|
||||
}
|
||||
|
||||
|
||||
|
|
2
dist/dependency-submission/post/index.js.map
vendored
2
dist/dependency-submission/post/index.js.map
vendored
File diff suppressed because one or more lines are too long
20
dist/setup-gradle/main/index.js
vendored
20
dist/setup-gradle/main/index.js
vendored
|
@ -144431,19 +144431,19 @@ class BuildScanConfig {
|
|||
return core.getInput('develocity-token-expiry');
|
||||
}
|
||||
getDevelocityInjectionEnabled() {
|
||||
return getMaybeBooleanInput('develocity-injection-enabled');
|
||||
return getOptionalBooleanInput('develocity-injection-enabled');
|
||||
}
|
||||
getDevelocityUrl() {
|
||||
return core.getInput('develocity-url');
|
||||
}
|
||||
getDevelocityAllowUntrustedServer() {
|
||||
return getMaybeBooleanInput('develocity-allow-untrusted-server');
|
||||
return getOptionalBooleanInput('develocity-allow-untrusted-server');
|
||||
}
|
||||
getDevelocityCaptureFileFingerprints() {
|
||||
return getMaybeBooleanInput('develocity-capture-file-fingerprints');
|
||||
return getOptionalBooleanInput('develocity-capture-file-fingerprints');
|
||||
}
|
||||
getDevelocityEnforceUrl() {
|
||||
return getMaybeBooleanInput('develocity-enforce-url');
|
||||
return getOptionalBooleanInput('develocity-enforce-url');
|
||||
}
|
||||
getDevelocityPluginVersion() {
|
||||
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]`);
|
||||
}
|
||||
function getMaybeBooleanInput(paramName) {
|
||||
function getOptionalBooleanInput(paramName) {
|
||||
const paramValue = core.getInput(paramName);
|
||||
switch (paramValue?.toLowerCase().trim()) {
|
||||
case 'false':
|
||||
return false;
|
||||
case 'true':
|
||||
return true;
|
||||
default:
|
||||
return undefined;
|
||||
if (paramValue === '') {
|
||||
return undefined;
|
||||
}
|
||||
return getBooleanInput(paramName);
|
||||
}
|
||||
|
||||
|
||||
|
|
2
dist/setup-gradle/main/index.js.map
vendored
2
dist/setup-gradle/main/index.js.map
vendored
File diff suppressed because one or more lines are too long
20
dist/setup-gradle/post/index.js
vendored
20
dist/setup-gradle/post/index.js
vendored
|
@ -141884,19 +141884,19 @@ class BuildScanConfig {
|
|||
return core.getInput('develocity-token-expiry');
|
||||
}
|
||||
getDevelocityInjectionEnabled() {
|
||||
return getMaybeBooleanInput('develocity-injection-enabled');
|
||||
return getOptionalBooleanInput('develocity-injection-enabled');
|
||||
}
|
||||
getDevelocityUrl() {
|
||||
return core.getInput('develocity-url');
|
||||
}
|
||||
getDevelocityAllowUntrustedServer() {
|
||||
return getMaybeBooleanInput('develocity-allow-untrusted-server');
|
||||
return getOptionalBooleanInput('develocity-allow-untrusted-server');
|
||||
}
|
||||
getDevelocityCaptureFileFingerprints() {
|
||||
return getMaybeBooleanInput('develocity-capture-file-fingerprints');
|
||||
return getOptionalBooleanInput('develocity-capture-file-fingerprints');
|
||||
}
|
||||
getDevelocityEnforceUrl() {
|
||||
return getMaybeBooleanInput('develocity-enforce-url');
|
||||
return getOptionalBooleanInput('develocity-enforce-url');
|
||||
}
|
||||
getDevelocityPluginVersion() {
|
||||
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]`);
|
||||
}
|
||||
function getMaybeBooleanInput(paramName) {
|
||||
function getOptionalBooleanInput(paramName) {
|
||||
const paramValue = core.getInput(paramName);
|
||||
switch (paramValue?.toLowerCase().trim()) {
|
||||
case 'false':
|
||||
return false;
|
||||
case 'true':
|
||||
return true;
|
||||
default:
|
||||
return undefined;
|
||||
if (paramValue === '') {
|
||||
return undefined;
|
||||
}
|
||||
return getBooleanInput(paramName);
|
||||
}
|
||||
|
||||
|
||||
|
|
2
dist/setup-gradle/post/index.js.map
vendored
2
dist/setup-gradle/post/index.js.map
vendored
File diff suppressed because one or more lines are too long
20
dist/wrapper-validation/main/index.js
vendored
20
dist/wrapper-validation/main/index.js
vendored
|
@ -90063,19 +90063,19 @@ class BuildScanConfig {
|
|||
return core.getInput('develocity-token-expiry');
|
||||
}
|
||||
getDevelocityInjectionEnabled() {
|
||||
return getMaybeBooleanInput('develocity-injection-enabled');
|
||||
return getOptionalBooleanInput('develocity-injection-enabled');
|
||||
}
|
||||
getDevelocityUrl() {
|
||||
return core.getInput('develocity-url');
|
||||
}
|
||||
getDevelocityAllowUntrustedServer() {
|
||||
return getMaybeBooleanInput('develocity-allow-untrusted-server');
|
||||
return getOptionalBooleanInput('develocity-allow-untrusted-server');
|
||||
}
|
||||
getDevelocityCaptureFileFingerprints() {
|
||||
return getMaybeBooleanInput('develocity-capture-file-fingerprints');
|
||||
return getOptionalBooleanInput('develocity-capture-file-fingerprints');
|
||||
}
|
||||
getDevelocityEnforceUrl() {
|
||||
return getMaybeBooleanInput('develocity-enforce-url');
|
||||
return getOptionalBooleanInput('develocity-enforce-url');
|
||||
}
|
||||
getDevelocityPluginVersion() {
|
||||
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]`);
|
||||
}
|
||||
function getMaybeBooleanInput(paramName) {
|
||||
function getOptionalBooleanInput(paramName) {
|
||||
const paramValue = core.getInput(paramName);
|
||||
switch (paramValue?.toLowerCase().trim()) {
|
||||
case 'false':
|
||||
return false;
|
||||
case 'true':
|
||||
return true;
|
||||
default:
|
||||
return undefined;
|
||||
if (paramValue === '') {
|
||||
return undefined;
|
||||
}
|
||||
return getBooleanInput(paramName);
|
||||
}
|
||||
|
||||
|
||||
|
|
2
dist/wrapper-validation/main/index.js.map
vendored
2
dist/wrapper-validation/main/index.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue