diff --git a/dist/restore/index.js b/dist/restore/index.js index 89c8028..0fce98e 100644 --- a/dist/restore/index.js +++ b/dist/restore/index.js @@ -54705,7 +54705,7 @@ async function run() { core.exportVariable("CARGO_INCREMENTAL", 0); const start = Date.now(); const { paths, key, restoreKeys } = await getCacheConfig(); - core.info(`Restoring paths:\n ${paths.join("\n ")}.`); + core.info(`Restoring paths:\n ${paths.join("\n ")}`); core.info(`Using keys:\n ${[key, ...restoreKeys].join("\n ")}`); try { const restoreKey = await cache.restoreCache(paths, key, restoreKeys); diff --git a/dist/save/index.js b/dist/save/index.js index 762529f..6ee6c87 100644 --- a/dist/save/index.js +++ b/dist/save/index.js @@ -54730,7 +54730,7 @@ async function run() { await cleanRegistry(registryName, packages); await cleanGit(packages); await cleanTarget(packages); - core.info(`Saving paths:\n ${savePaths.join("\n ")}.`); + core.info(`Saving paths:\n ${savePaths.join("\n ")}`); core.info(`Using key "${key}".`); try { await cache.saveCache(savePaths, key); diff --git a/src/restore.ts b/src/restore.ts index 1113917..4eb5fba 100644 --- a/src/restore.ts +++ b/src/restore.ts @@ -13,7 +13,7 @@ async function run() { const start = Date.now(); const { paths, key, restoreKeys } = await getCacheConfig(); - core.info(`Restoring paths:\n ${paths.join("\n ")}.`); + core.info(`Restoring paths:\n ${paths.join("\n ")}`); core.info(`Using keys:\n ${[key, ...restoreKeys].join("\n ")}`); try { const restoreKey = await cache.restoreCache(paths, key, restoreKeys); diff --git a/src/save.ts b/src/save.ts index f498d9b..fc67473 100644 --- a/src/save.ts +++ b/src/save.ts @@ -33,7 +33,7 @@ async function run() { await cleanTarget(packages); - core.info(`Saving paths:\n ${savePaths.join("\n ")}.`); + core.info(`Saving paths:\n ${savePaths.join("\n ")}`); core.info(`Using key "${key}".`); try { await cache.saveCache(savePaths, key);