1
0
Fork 0

Add current scope from github ref

pull/1268/head
Sampark Sharma 2022-12-13 11:48:30 +00:00 committed by GitHub
parent e559a15ca6
commit 24685611e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 6 deletions

View File

@ -107,7 +107,7 @@ export async function getCacheEntry(
if (response.statusCode === 204) { if (response.statusCode === 204) {
// List cache for primary key only if cache miss occurs // List cache for primary key only if cache miss occurs
if (core.isDebug()) { if (core.isDebug()) {
await listCache(keys[0], httpClient, version, response) await listCache(keys[0], httpClient, version)
} }
return null return null
} }
@ -130,20 +130,19 @@ export async function getCacheEntry(
async function listCache( async function listCache(
key: string, key: string,
httpClient: HttpClient, httpClient: HttpClient,
version: string, version: string
getCacheEntryResponse: any
): Promise<void> { ): Promise<void> {
const scope = getCacheEntryResponse.result?.scope
const resource = `caches?key=${encodeURIComponent(key)}` const resource = `caches?key=${encodeURIComponent(key)}`
const response = await retryTypedResponse('listCache', async () => const response = await retryTypedResponse('listCache', async () =>
httpClient.getJson<ArtifactCacheList>(getCacheApiUrl(resource)) httpClient.getJson<ArtifactCacheList>(getCacheApiUrl(resource))
) )
if (response.statusCode === 200) { core.debug(`List Cache Response Status Code: ${response.statusCode}`)
if (response.statusCode !== 200) {
const cacheListResult = response.result const cacheListResult = response.result
const totalCount = cacheListResult?.totalCount const totalCount = cacheListResult?.totalCount
if (totalCount && totalCount > 0) { if (totalCount && totalCount > 0) {
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 ${process.env['GITHUB_REF']} 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(