1
0
Fork 0

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

pull/842/head
Thomas Boop 2021-06-07 15:31:03 -04:00 committed by GitHub
parent 243a8bba07
commit b9414eecb3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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