Allow cache to overwrite existing Gradle User Home

Fixes #480
This commit is contained in:
daz 2023-08-19 13:01:29 -06:00
parent 68e1dcdea4
commit 3d49588efc
No known key found for this signature in database
5 changed files with 66 additions and 7 deletions

View file

@ -13,6 +13,10 @@ export function isCacheWriteOnly(): boolean {
return getBooleanInput('cache-write-only')
}
export function isCacheOverwriteExisting(): boolean {
return getBooleanInput('cache-overwrite-existing')
}
export function isCacheStrictMatch(): boolean {
return getBooleanInput('gradle-home-cache-strict-match')
}