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:
committed by
github-actions[bot]
parent
2289da045c
commit
dc97151e55
22
dist/wrapper-validation/main/index.js
vendored
22
dist/wrapper-validation/main/index.js
vendored
@@ -89987,11 +89987,24 @@ class DependencyGraphConfig {
|
||||
return DependencyGraphConfig.constructJobCorrelator(github.context.workflow, github.context.job, getJobMatrix());
|
||||
}
|
||||
getReportDirectory() {
|
||||
return path_1.default.resolve(getWorkspaceDirectory(), 'dependency-graph-reports');
|
||||
const param = core.getInput('dependency-graph-report-dir');
|
||||
return path_1.default.resolve(getWorkspaceDirectory(), param);
|
||||
}
|
||||
getDownloadArtifactName() {
|
||||
return process.env['DEPENDENCY_GRAPH_DOWNLOAD_ARTIFACT_NAME'];
|
||||
}
|
||||
getExcludeProjects() {
|
||||
return getOptionalInput('dependency-graph-exclude-projects');
|
||||
}
|
||||
getIncludeProjects() {
|
||||
return getOptionalInput('dependency-graph-include-projects');
|
||||
}
|
||||
getExcludeConfigurations() {
|
||||
return getOptionalInput('dependency-graph-exclude-configurations');
|
||||
}
|
||||
getIncludeConfigurations() {
|
||||
return getOptionalInput('dependency-graph-include-configurations');
|
||||
}
|
||||
static constructJobCorrelator(workflow, jobId, matrixJson) {
|
||||
const matrixString = this.describeMatrix(matrixJson);
|
||||
const label = matrixString ? `${workflow}-${jobId}-${matrixString}` : `${workflow}-${jobId}`;
|
||||
@@ -90257,6 +90270,13 @@ function parseNumericInput(paramName, paramValue, paramDefault) {
|
||||
return numericValue;
|
||||
}
|
||||
exports.parseNumericInput = parseNumericInput;
|
||||
function getOptionalInput(paramName) {
|
||||
const paramValue = core.getInput(paramName);
|
||||
if (paramValue.length > 0) {
|
||||
return paramValue;
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
function getBooleanInput(paramName, paramDefault = false) {
|
||||
const paramValue = core.getInput(paramName);
|
||||
switch (paramValue.toLowerCase().trim()) {
|
||||
|
||||
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