From 4a7f04a1c2a7ee449aa9b9bdcd576b6706ef8961 Mon Sep 17 00:00:00 2001 From: Nogic <24802730+nogic1008@users.noreply.github.com> Date: Mon, 29 May 2023 08:09:11 +0900 Subject: [PATCH] fix: apply suggestions from code review Co-authored-by: Ivan <98037481+IvanZosimov@users.noreply.github.com> --- src/cache-restore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cache-restore.ts b/src/cache-restore.ts index 59e5f30..a9763e0 100644 --- a/src/cache-restore.ts +++ b/src/cache-restore.ts @@ -27,7 +27,7 @@ export const restoreCache = async (cacheDependencyPath?: string) => { core.setOutput(Outputs.CacheHit, Boolean(cacheKey)); if (!cacheKey) { - core.info('dotnet cache is not found'); + core.info('Dotnet cache is not found'); return; }