diff --git a/dist/cache-save/index.js b/dist/cache-save/index.js index 6375d4bb..d5f534db 100644 --- a/dist/cache-save/index.js +++ b/dist/cache-save/index.js @@ -59630,7 +59630,7 @@ function saveCache(packageManager) { return __awaiter(this, void 0, void 0, function* () { const cachePathState = core.getState(cache_distributor_1.State.CACHE_PATHS); if (!cachePathState) { - core.warning('State paths for saving/restoring is empty. Could you please check previous logs and verify that the version python is specified version?'); + core.warning('Cache paths are empty. Please check the previous logs and make sure that the python version is specified'); return; } const cachePaths = JSON.parse(cachePathState); diff --git a/src/cache-save.ts b/src/cache-save.ts index 64cbe64d..1017ef11 100644 --- a/src/cache-save.ts +++ b/src/cache-save.ts @@ -21,7 +21,7 @@ async function saveCache(packageManager: string) { if (!cachePathState) { core.warning( - 'State paths for saving/restoring is empty. Could you please check previous logs and verify that the version python is specified version?' + 'Cache paths are empty. Please check the previous logs and make sure that the python version is specified' ); return; }