mirror of
https://github.com/gradle/actions
synced 2024-11-24 02:12:12 +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');
|
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
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');
|
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
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');
|
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
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');
|
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
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');
|
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
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