Merge pull request #40 from cfsnate/implicit-action-cache

Fix S3 Cache
pull/1662/head
Cyril Rohr 2025-10-14 20:40:32 +02:00 committed by GitHub
commit 9fc411013e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ export async function restoreImpl(
earlyExit?: boolean | undefined earlyExit?: boolean | undefined
): Promise<string | undefined> { ): Promise<string | undefined> {
try { try {
if (!utils.isCacheFeatureAvailable()) { if (!canSaveToS3 && !utils.isCacheFeatureAvailable()) {
core.setOutput(Outputs.CacheHit, "false"); core.setOutput(Outputs.CacheHit, "false");
return; return;
} }

View File

@ -22,7 +22,7 @@ export async function saveImpl(
): Promise<number | void> { ): Promise<number | void> {
let cacheId = -1; let cacheId = -1;
try { try {
if (!utils.isCacheFeatureAvailable()) { if (!canSaveToS3 && !utils.isCacheFeatureAvailable()) {
return; return;
} }