diff --git a/dist/cache-save/index.js b/dist/cache-save/index.js
index cedb87e..bf7afc5 100644
--- a/dist/cache-save/index.js
+++ b/dist/cache-save/index.js
@@ -60008,7 +60008,7 @@ const cachePackages = () => __awaiter(void 0, void 0, void 0, function* () {
     const cachePaths = yield cache_utils_1.getCacheDirectoryPath(packageManagerInfo);
     const nonExistingPaths = cachePaths.filter(cachePath => !fs_1.default.existsSync(cachePath));
     if (nonExistingPaths.length === cachePaths.length) {
-        core.warning(`There are no cache folders on the disk`);
+        core.warning("There are no cache folders on the disk");
         return;
     }
     if (nonExistingPaths.length) {
diff --git a/src/cache-save.ts b/src/cache-save.ts
index 1ee7a56..7adf51a 100644
--- a/src/cache-save.ts
+++ b/src/cache-save.ts
@@ -47,7 +47,7 @@ const cachePackages = async () => {
   );
 
   if (nonExistingPaths.length === cachePaths.length) {
-    core.warning(`There are no cache folders on the disk`);
+    core.warning("There are no cache folders on the disk");
     return;
   }