1
0
Fork 0

Updated error type to generic to show warning

pull/1097/head
Sankalp Kotewar 2022-05-23 05:39:42 +00:00 committed by GitHub
parent da52b35800
commit 9aecf41d21
1 changed files with 3 additions and 2 deletions

View File

@ -160,8 +160,9 @@ export async function saveCache(
if(cachePaths.length === 0){ if(cachePaths.length === 0){
throw new ValidationError( throw new Error(
`Path Validation Error: Path(s) specified in the action do not exist, hence no cache is being saved.`) `Path Validation Error: Path(s) specified in the action do not exist, hence no cache is being saved.`
)
} }
const archiveFolder = await utils.createTempDirectory() const archiveFolder = await utils.createTempDirectory()