From 6f05cbc27851456238396769591a0b7d9c0323b7 Mon Sep 17 00:00:00 2001
From: Albert Still <albertjamesstill@gmail.com>
Date: Fri, 26 Mar 2021 10:49:07 +1100
Subject: [PATCH] fix formatting

---
 src/restore.ts | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

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;