From 46a8fa66bd0e543df4a6eb2ea1e8fb34b5a0ad5b Mon Sep 17 00:00:00 2001 From: Rares Matei Date: Thu, 9 Jan 2025 11:21:41 +0000 Subject: [PATCH] commit source changes --- workflow-steps/cache/output/main.js | 2 +- workflow-steps/cache/output/post.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/workflow-steps/cache/output/main.js b/workflow-steps/cache/output/main.js index 722bc54..074aac7 100644 --- a/workflow-steps/cache/output/main.js +++ b/workflow-steps/cache/output/main.js @@ -5990,7 +5990,7 @@ function hash(input) { function buildCachePaths(inputPaths2, warnInvalidPaths = true) { const directories = Array.from( new Set( - inputPaths2.split("\n").filter((p) => p).map((p) => p.replace(/^~/, "..")).reduce( + inputPaths2.split("\n").filter((p) => p).reduce( (allPaths, currPath) => [...allPaths, ...expandPath(currPath)], [] ) diff --git a/workflow-steps/cache/output/post.js b/workflow-steps/cache/output/post.js index 500a63e..cdedf98 100644 --- a/workflow-steps/cache/output/post.js +++ b/workflow-steps/cache/output/post.js @@ -5978,7 +5978,7 @@ function hash(input) { function buildCachePaths(inputPaths2, warnInvalidPaths = true) { const directories = Array.from( new Set( - inputPaths2.split("\n").filter((p) => p).map((p) => p.replace(/^~/, "..")).reduce( + inputPaths2.split("\n").filter((p) => p).reduce( (allPaths, currPath) => [...allPaths, ...expandPath(currPath)], [] )