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

View file

@ -74,9 +74,8 @@ inputs:
default: 'disabled'
artifact-retention-days:
description: Specifies the number of days to retain any artifacts generated by the action. Defaults to 7 days. Set to zero for maximum retention.
description: Specifies the number of days to retain any artifacts generated by the action. If not set, the default retention settings for the repository will apply.
required: false
default: 7
# EXPERIMENTAL & INTERNAL ACTION INPUTS
# The following action properties allow fine-grained tweaking of the action caching behaviour.

2
dist/main/index.js vendored
View file

@ -94070,7 +94070,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

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

View file

@ -90,7 +90,8 @@ export function getDependencyGraphOption(): DependencyGraphOption {
export function getArtifactRetentionDays(): number {
const val = core.getInput('artifact-retention-days')
return parseNumericInput('artifact-retention-days', val, 7)
return parseNumericInput('artifact-retention-days', val, 0)
// Zero indicates that the default repository settings should be used
}
export function parseNumericInput(paramName: string, paramValue: string, paramDefault: number): number {