mirror of https://github.com/actions/toolkit
Fix test
parent
816c1b3760
commit
e559a15ca6
|
@ -145,7 +145,7 @@ async function listCache(
|
||||||
core.debug(
|
core.debug(
|
||||||
`No matching cache found for cache key '${key}', version '${version} and scope ${scope} but there are ${totalCount} existing version of the cache for this key. More info on versioning can be found here: https://github.com/actions/cache#cache-version \nOther versions are as follows:`
|
`No matching cache found for cache key '${key}', version '${version} and scope ${scope} but there are ${totalCount} existing version of the cache for this key. More info on versioning can be found here: https://github.com/actions/cache#cache-version \nOther versions are as follows:`
|
||||||
)
|
)
|
||||||
for (const cacheEntry of cacheListResult.artifactCaches || []) {
|
for (const cacheEntry of cacheListResult?.artifactCaches || []) {
|
||||||
core.debug(
|
core.debug(
|
||||||
`Cache Key: ${cacheEntry?.cacheKey}, Cache Version: ${cacheEntry?.cacheVersion}, Cache Scope: ${cacheEntry?.scope}, Cache Created: ${cacheEntry?.creationTime}`
|
`Cache Key: ${cacheEntry?.cacheKey}, Cache Version: ${cacheEntry?.cacheVersion}, Cache Scope: ${cacheEntry?.scope}, Cache Created: ${cacheEntry?.creationTime}`
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue