we really shouldn't warn on these errors, action author can decide what to do (#837)

This commit is contained in:
Thomas Boop
2021-06-07 15:31:03 -04:00
committed by GitHub
parent 243a8bba07
commit b9414eecb3

View File

@@ -36,7 +36,7 @@ export async function hashFiles(globber: Globber): Promise<string> {
core.debug(`Found ${count} files to hash.`)
return result.digest('hex')
} else {
core.warning(`No matches found for glob`)
core.debug(`No matches found for glob`)
return ''
}
}