diff --git a/src/restore.ts b/src/restore.ts
index 48e6ff4..833514c 100644
--- a/src/restore.ts
+++ b/src/restore.ts
@@ -52,7 +52,11 @@ async function run(): Promise<void> {
             const isExactKeyMatch = utils.isExactKeyMatch(primaryKey, cacheKey);
             utils.setCacheHitOutput(isExactKeyMatch);
 
-            core.info(`Cache restored from ${isExactKeyMatch ? '' : 'restore '}key: ${cacheKey}`);
+            core.info(
+                `Cache restored from ${
+                    isExactKeyMatch ? "" : "restore "
+                }key: ${cacheKey}`
+            );
         } catch (error) {
             if (error.name === cache.ValidationError.name) {
                 throw error;