From e6fb8f1c5dd2ecf0a8b92dcc3a3607efcddb56c1 Mon Sep 17 00:00:00 2001 From: Rob Herley Date: Fri, 14 Feb 2025 09:28:01 -0500 Subject: [PATCH] cache miss as debug, not warning annotation --- packages/cache/src/cache.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cache/src/cache.ts b/packages/cache/src/cache.ts index 9b02489f..5f2102cb 100644 --- a/packages/cache/src/cache.ts +++ b/packages/cache/src/cache.ts @@ -256,7 +256,7 @@ async function restoreCacheV2( const response = await twirpClient.GetCacheEntryDownloadURL(request) if (!response.ok) { - core.warning(`Cache not found for keys: ${keys.join(', ')}`) + core.debug(`Cache not found for keys: ${keys.join(', ')}`) return undefined }