From b0d13db408254bf1c191f0c1f17ab73a0f6d4bab Mon Sep 17 00:00:00 2001
From: Josh Gross <jogros@microsoft.com>
Date: Thu, 14 Nov 2019 17:00:53 -0500
Subject: [PATCH] Use const instead of let (linting)

---
 src/save.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/save.ts b/src/save.ts
index 52b03fd..d660064 100644
--- a/src/save.ts
+++ b/src/save.ts
@@ -24,12 +24,12 @@ async function run(): Promise<void> {
             return;
         }
 
-        let cachePath = utils.resolvePath(
+        const cachePath = utils.resolvePath(
             core.getInput(Inputs.Path, { required: true })
         );
         core.debug(`Cache Path: ${cachePath}`);
 
-        let archivePath = path.join(
+        const archivePath = path.join(
             await utils.createTempDirectory(),
             "cache.tgz"
         );