From 89403d0a90f96eadc4bbd4b77e469b73756b8176 Mon Sep 17 00:00:00 2001 From: Mikhail Ryzhov Date: Wed, 20 Mar 2024 17:12:36 +0100 Subject: [PATCH] extract from tmp dir --- .github/actions/cache/dist/restore/index.js | 2 +- .github/actions/cache/src/restoreImpl.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/cache/dist/restore/index.js b/.github/actions/cache/dist/restore/index.js index 78c83bcb22e743..69de7097425c2e 100644 --- a/.github/actions/cache/dist/restore/index.js +++ b/.github/actions/cache/dist/restore/index.js @@ -33214,7 +33214,7 @@ async function restore() { } core.info(`Extracting ${cacheFile} to ${cacheLocalPath}`) tar.x({ - file: path.join(cacheLocalPath, cacheFile), + file: path.join(tempDir, cacheFile), cwd: cacheLocalPath, sync: true }) diff --git a/.github/actions/cache/src/restoreImpl.js b/.github/actions/cache/src/restoreImpl.js index a34e4667c5437d..61cf459b6732ef 100644 --- a/.github/actions/cache/src/restoreImpl.js +++ b/.github/actions/cache/src/restoreImpl.js @@ -58,7 +58,7 @@ async function restore() { } core.info(`Extracting ${cacheFile} to ${cacheLocalPath}`) tar.x({ - file: path.join(cacheLocalPath, cacheFile), + file: path.join(tempDir, cacheFile), cwd: cacheLocalPath, sync: true })