Skip to content

Commit 40b9536

Browse files
authored
fix: add arch to cache key (#664)
1 parent 0a40ce6 commit 40b9536

File tree

3 files changed

+12882
-12882
lines changed

3 files changed

+12882
-12882
lines changed

dist/cleanup/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -88116,7 +88116,7 @@ function computeCacheKey(packageManager, cacheDependencyPath) {
8811688116
if (!fileHash) {
8811788117
throw new Error(`No file in ${process.cwd()} matched to [${pattern}], make sure you have checked out the target repository`);
8811888118
}
88119-
return `${CACHE_KEY_PREFIX}-${process.env['RUNNER_OS']}-${packageManager.id}-${fileHash}`;
88119+
return `${CACHE_KEY_PREFIX}-${process.env['RUNNER_OS']}-${process.arch}-${packageManager.id}-${fileHash}`;
8812088120
});
8812188121
}
8812288122
/**

0 commit comments

Comments
 (0)