From 58eb98df5055bbe0d3c624d73e033837615cb9af Mon Sep 17 00:00:00 2001
From: Vladimir Safonkin <vsafonkin@github.com>
Date: Fri, 1 Jul 2022 09:25:30 +0200
Subject: [PATCH] Minor fix

---
 src/cache-save.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cache-save.ts b/src/cache-save.ts
index 8ac43df..2b58677 100644
--- a/src/cache-save.ts
+++ b/src/cache-save.ts
@@ -59,7 +59,7 @@ const cachePackages = async () => {
   }
 
   const cacheId = await cache.saveCache(cachePaths, primaryKey);
-  if (cacheId == -1) {
+  if (cacheId === -1) {
     return;
   }
   core.info(`Cache saved with the key: ${primaryKey}`);