Use the repository default for artifact retention

Rather than using a custom 7 day default retention, just fall back
to the repository setting for artifact retention.
This commit is contained in:
daz 2023-11-08 22:59:35 -08:00
parent 33f1d73156
commit b84f847be9
No known key found for this signature in database
6 changed files with 7 additions and 7 deletions

2
dist/post/index.js vendored
View file

@ -93938,7 +93938,7 @@ function getDependencyGraphOption() {
exports.getDependencyGraphOption = getDependencyGraphOption;
function getArtifactRetentionDays() {
const val = core.getInput('artifact-retention-days');
return parseNumericInput('artifact-retention-days', val, 7);
return parseNumericInput('artifact-retention-days', val, 0);
}
exports.getArtifactRetentionDays = getArtifactRetentionDays;
function parseNumericInput(paramName, paramValue, paramDefault) {

File diff suppressed because one or more lines are too long