diff --git a/dependency-submission/action.yml b/dependency-submission/action.yml index 32b178c..a53e3f7 100644 --- a/dependency-submission/action.yml +++ b/dependency-submission/action.yml @@ -60,7 +60,8 @@ inputs: cache-cleanup: description: | Specifies if the action should attempt to remove any stale/unused entries from the Gradle User Home prior to saving to the GitHub Actions cache. - By default, no cleanup is performed. It can be configured to run every time, or only when all Gradle builds succeed for the Job. + By default ('on-success'), cleanup is performed when all Gradle builds succeed for the Job. + This behaviour can be disabled ('never'), or configured to always run irrespective of the build outcome ('always'). Valid values are 'never', 'on-success' and 'always'. required: false default: 'on-success' diff --git a/setup-gradle/action.yml b/setup-gradle/action.yml index 134eca7..421e9cc 100644 --- a/setup-gradle/action.yml +++ b/setup-gradle/action.yml @@ -43,7 +43,8 @@ inputs: cache-cleanup: description: | Specifies if the action should attempt to remove any stale/unused entries from the Gradle User Home prior to saving to the GitHub Actions cache. - By default, no cleanup is performed. It can be configured to run every time, or only when all Gradle builds succeed for the Job. + By default ('on-success'), cleanup is performed when all Gradle builds succeed for the Job. + This behaviour can be disabled ('never'), or configured to always run irrespective of the build outcome ('always'). Valid values are 'never', 'on-success' and 'always'. required: false default: 'on-success'