We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed4275b commit 7b524f5Copy full SHA for 7b524f5
src/index.ts
@@ -75,7 +75,7 @@ export async function downloadArtifact(
75
76
// Do not check if the file exists in the cache when force === true
77
if (!artifactDetails.force) {
78
- d(`Checking the cache for ${fileName} (${url})`);
+ d(`Checking the cache (${artifactDetails.cacheRoot}) for ${fileName} (${url})`);
79
const cachedPath = await cache.getPathForFileInCache(url, fileName);
80
81
if (cachedPath === null) {
@@ -121,6 +121,7 @@ export async function downloadArtifact(
121
artifactName: 'SHASUMS256.txt',
122
force: artifactDetails.force,
123
downloadOptions: artifactDetails.downloadOptions,
124
+ cacheRoot: artifactDetails.cacheRoot,
125
downloader: artifactDetails.downloader,
126
mirrorOptions: artifactDetails.mirrorOptions,
127
});
0 commit comments