diff --git a/dist/cache-save/index.js b/dist/cache-save/index.js index 81a0817a..654cbbf9 100644 --- a/dist/cache-save/index.js +++ b/dist/cache-save/index.js @@ -60396,7 +60396,7 @@ const cachePackages = (packageManager) => __awaiter(void 0, void 0, void 0, func return; } if (core.getInput('cache-restore-only') == 'true') { - core.info(`Cache was not saved since 'cache-restore-only' was set to true}`); + core.info(`Cache was not saved since 'cache-restore-only' was set to true`); return; } if (!cachePaths.length) { diff --git a/src/cache-save.ts b/src/cache-save.ts index 57449913..352b1a53 100644 --- a/src/cache-save.ts +++ b/src/cache-save.ts @@ -34,9 +34,7 @@ const cachePackages = async (packageManager: string) => { return; } if (core.getInput('cache-restore-only') == 'true') { - core.info( - `Cache was not saved since 'cache-restore-only' was set to true}` - ); + core.info(`Cache was not saved since 'cache-restore-only' was set to true`); return; }