mirror of
https://github.com/gradle/actions.git
synced 2025-11-26 17:09:10 +08:00
[bot] Update dist directory
This commit is contained in:
27
dist/wrapper-validation/main/index.js
vendored
27
dist/wrapper-validation/main/index.js
vendored
@@ -110097,7 +110097,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.WrapperValidationConfig = exports.GradleExecutionConfig = exports.BuildScanConfig = exports.JobSummaryOption = exports.SummaryConfig = exports.CacheCleanupOption = exports.CacheConfig = exports.DependencyGraphOption = exports.DependencyGraphConfig = exports.ACTION_METADATA_DIR = void 0;
|
||||
exports.WrapperValidationConfig = exports.GradleExecutionConfig = exports.PluginRepositoryConfig = exports.BuildScanConfig = exports.JobSummaryOption = exports.SummaryConfig = exports.CacheCleanupOption = exports.CacheConfig = exports.DependencyGraphOption = exports.DependencyGraphConfig = exports.ACTION_METADATA_DIR = void 0;
|
||||
exports.getJobMatrix = getJobMatrix;
|
||||
exports.getGithubToken = getGithubToken;
|
||||
exports.getWorkspaceDirectory = getWorkspaceDirectory;
|
||||
@@ -110160,6 +110160,9 @@ class DependencyGraphConfig {
|
||||
getIncludeConfigurations() {
|
||||
return getOptionalInput('dependency-graph-include-configurations');
|
||||
}
|
||||
getPluginRepository() {
|
||||
return new PluginRepositoryConfig();
|
||||
}
|
||||
static constructJobCorrelator(workflow, jobId, matrixJson) {
|
||||
const matrixString = this.describeMatrix(matrixJson);
|
||||
const label = matrixString ? `${workflow}-${jobId}-${matrixString}` : `${workflow}-${jobId}`;
|
||||
@@ -110346,14 +110349,8 @@ class BuildScanConfig {
|
||||
getDevelocityCcudPluginVersion() {
|
||||
return core.getInput('develocity-ccud-plugin-version');
|
||||
}
|
||||
getGradlePluginRepositoryUrl() {
|
||||
return core.getInput('gradle-plugin-repository-url');
|
||||
}
|
||||
getGradlePluginRepositoryUsername() {
|
||||
return core.getInput('gradle-plugin-repository-username');
|
||||
}
|
||||
getGradlePluginRepositoryPassword() {
|
||||
return core.getInput('gradle-plugin-repository-password');
|
||||
getPluginRepository() {
|
||||
return new PluginRepositoryConfig();
|
||||
}
|
||||
verifyTermsOfUseAgreement() {
|
||||
if ((this.getBuildScanTermsOfUseUrl() !== 'https://gradle.com/terms-of-service' &&
|
||||
@@ -110368,6 +110365,18 @@ class BuildScanConfig {
|
||||
exports.BuildScanConfig = BuildScanConfig;
|
||||
BuildScanConfig.DevelocityAccessKeyEnvVar = 'DEVELOCITY_ACCESS_KEY';
|
||||
BuildScanConfig.GradleEnterpriseAccessKeyEnvVar = 'GRADLE_ENTERPRISE_ACCESS_KEY';
|
||||
class PluginRepositoryConfig {
|
||||
getUrl() {
|
||||
return getOptionalInput('gradle-plugin-repository-url');
|
||||
}
|
||||
getUsername() {
|
||||
return getOptionalInput('gradle-plugin-repository-username');
|
||||
}
|
||||
getPassword() {
|
||||
return getOptionalInput('gradle-plugin-repository-password');
|
||||
}
|
||||
}
|
||||
exports.PluginRepositoryConfig = PluginRepositoryConfig;
|
||||
class GradleExecutionConfig {
|
||||
getGradleVersion() {
|
||||
return core.getInput('gradle-version');
|
||||
|
||||
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
Reference in New Issue
Block a user