Skip to content

Commit

Permalink
[bot] Update dist directory
Browse files Browse the repository at this point in the history
  • Loading branch information
bigdaz authored and github-actions[bot] committed Sep 14, 2024
1 parent cf8c435 commit 0d30c91
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions dist/dependency-submission/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -180679,7 +180679,7 @@ class AbstractEntryExtractor {
this.saveMetadataForCacheResults(await Promise.all(processes));
}
async restoreExtractedCacheEntry(artifactType, cacheKey, pattern, listener) {
const restoredEntry = await (0, cache_utils_1.restoreCache)([pattern], cacheKey, [], listener);
const restoredEntry = await (0, cache_utils_1.restoreCache)(pattern.split('\n'), cacheKey, [], listener);
if (restoredEntry) {
return new ExtractedCacheEntry(artifactType, pattern, cacheKey);
}
Expand Down Expand Up @@ -180729,7 +180729,7 @@ class AbstractEntryExtractor {
entryListener.markNotSaved('contents unchanged');
}
else {
await (0, cache_utils_1.saveCache)([pattern], cacheKey, entryListener);
await (0, cache_utils_1.saveCache)(pattern.split('\n'), cacheKey, entryListener);
}
for (const file of matchingFiles) {
(0, cache_utils_1.tryDelete)(file);
Expand Down
2 changes: 1 addition & 1 deletion dist/dependency-submission/main/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/dependency-submission/post/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -134285,7 +134285,7 @@ class AbstractEntryExtractor {
this.saveMetadataForCacheResults(await Promise.all(processes));
}
async restoreExtractedCacheEntry(artifactType, cacheKey, pattern, listener) {
const restoredEntry = await (0, cache_utils_1.restoreCache)([pattern], cacheKey, [], listener);
const restoredEntry = await (0, cache_utils_1.restoreCache)(pattern.split('\n'), cacheKey, [], listener);
if (restoredEntry) {
return new ExtractedCacheEntry(artifactType, pattern, cacheKey);
}
Expand Down Expand Up @@ -134335,7 +134335,7 @@ class AbstractEntryExtractor {
entryListener.markNotSaved('contents unchanged');
}
else {
await (0, cache_utils_1.saveCache)([pattern], cacheKey, entryListener);
await (0, cache_utils_1.saveCache)(pattern.split('\n'), cacheKey, entryListener);
}
for (const file of matchingFiles) {
(0, cache_utils_1.tryDelete)(file);
Expand Down
2 changes: 1 addition & 1 deletion dist/dependency-submission/post/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/setup-gradle/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -180664,7 +180664,7 @@ class AbstractEntryExtractor {
this.saveMetadataForCacheResults(await Promise.all(processes));
}
async restoreExtractedCacheEntry(artifactType, cacheKey, pattern, listener) {
const restoredEntry = await (0, cache_utils_1.restoreCache)([pattern], cacheKey, [], listener);
const restoredEntry = await (0, cache_utils_1.restoreCache)(pattern.split('\n'), cacheKey, [], listener);
if (restoredEntry) {
return new ExtractedCacheEntry(artifactType, pattern, cacheKey);
}
Expand Down Expand Up @@ -180714,7 +180714,7 @@ class AbstractEntryExtractor {
entryListener.markNotSaved('contents unchanged');
}
else {
await (0, cache_utils_1.saveCache)([pattern], cacheKey, entryListener);
await (0, cache_utils_1.saveCache)(pattern.split('\n'), cacheKey, entryListener);
}
for (const file of matchingFiles) {
(0, cache_utils_1.tryDelete)(file);
Expand Down
2 changes: 1 addition & 1 deletion dist/setup-gradle/main/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/setup-gradle/post/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -180659,7 +180659,7 @@ class AbstractEntryExtractor {
this.saveMetadataForCacheResults(await Promise.all(processes));
}
async restoreExtractedCacheEntry(artifactType, cacheKey, pattern, listener) {
const restoredEntry = await (0, cache_utils_1.restoreCache)([pattern], cacheKey, [], listener);
const restoredEntry = await (0, cache_utils_1.restoreCache)(pattern.split('\n'), cacheKey, [], listener);
if (restoredEntry) {
return new ExtractedCacheEntry(artifactType, pattern, cacheKey);
}
Expand Down Expand Up @@ -180709,7 +180709,7 @@ class AbstractEntryExtractor {
entryListener.markNotSaved('contents unchanged');
}
else {
await (0, cache_utils_1.saveCache)([pattern], cacheKey, entryListener);
await (0, cache_utils_1.saveCache)(pattern.split('\n'), cacheKey, entryListener);
}
for (const file of matchingFiles) {
(0, cache_utils_1.tryDelete)(file);
Expand Down
2 changes: 1 addition & 1 deletion dist/setup-gradle/post/index.js.map

Large diffs are not rendered by default.

0 comments on commit 0d30c91

Please sign in to comment.