From 49af9112b2a54ce75d4f5fb23fcfabb77efb88b0 Mon Sep 17 00:00:00 2001 From: Bruno Borges Date: Thu, 9 Jul 2026 21:10:44 -0400 Subject: [PATCH] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- src/cache.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/cache.ts b/src/cache.ts index 2ead210b..21e5e2af 100644 --- a/src/cache.ts +++ b/src/cache.ts @@ -322,11 +322,12 @@ async function saveAdditionalCache( try { const cacheId = await cache.saveCache(additionalCache.path, primaryKey); if (cacheId === -1) { - core.debug(`Cache was not saved for the key: ${primaryKey}`); + core.debug( + `${additionalCache.name} cache was not saved for the key: ${primaryKey}` + ); return; } - core.info(`Cache saved with the key: ${primaryKey}`); - } catch (error) { + core.info(`${additionalCache.name} cache saved with the key: ${primaryKey}`); const err = error as Error; if (err.name === cache.ReserveCacheError.name) {