diff --git a/.github/actions/cache/dist/restore/index.js b/.github/actions/cache/dist/restore/index.js index d137bc1fa471b4..36bff5977c9805 100644 --- a/.github/actions/cache/dist/restore/index.js +++ b/.github/actions/cache/dist/restore/index.js @@ -33188,7 +33188,7 @@ async function restore() { cacheFile = '' for (var i = 0; i < keysRestore.length; i++) { var keyR = keysRestore[i] - core.debug(`Looking for ${keyR} in ${cacheRemotePath}`) + core.info(`Looking for ${keyR} in ${cacheRemotePath}`) files = await getSortedCacheFiles(cacheRemotePath, keyR) if (files.length) { cacheFile = files[0] diff --git a/.github/actions/cache/src/restoreImpl.js b/.github/actions/cache/src/restoreImpl.js index e96d9af7f9b672..45289cee330b83 100644 --- a/.github/actions/cache/src/restoreImpl.js +++ b/.github/actions/cache/src/restoreImpl.js @@ -32,7 +32,7 @@ async function restore() { cacheFile = '' for (var i = 0; i < keysRestore.length; i++) { var keyR = keysRestore[i] - core.debug(`Looking for ${keyR} in ${cacheRemotePath}`) + core.info(`Looking for ${keyR} in ${cacheRemotePath}`) files = await getSortedCacheFiles(cacheRemotePath, keyR) if (files.length) { cacheFile = files[0]