From b9414eecb32b55ee804df3b7144e53086b166035 Mon Sep 17 00:00:00 2001 From: Thomas Boop <52323235+thboop@users.noreply.github.com> Date: Mon, 7 Jun 2021 15:31:03 -0400 Subject: [PATCH] we really shouldn't warn on these errors, action author can decide what to do (#837) --- packages/glob/src/internal-hash-files.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/glob/src/internal-hash-files.ts b/packages/glob/src/internal-hash-files.ts index be9e3ba1..8ca8ba68 100644 --- a/packages/glob/src/internal-hash-files.ts +++ b/packages/glob/src/internal-hash-files.ts @@ -36,7 +36,7 @@ export async function hashFiles(globber: Globber): Promise { 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 '' } }