From aea58ec4e7435c003323f1183af190fdd83b8a78 Mon Sep 17 00:00:00 2001 From: Daniil Zotov <142039751+zoto-ff@users.noreply.github.com> Date: Sun, 29 Sep 2024 17:39:04 +0300 Subject: [PATCH] Update action.ts --- src/action.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/action.ts b/src/action.ts index e28e363..a4fd2d4 100644 --- a/src/action.ts +++ b/src/action.ts @@ -1,3 +1,4 @@ +import { createHash } from "node:crypto"; import { homedir } from "node:os"; import { join } from "node:path"; import { @@ -73,7 +74,11 @@ export default async (options: Input): Promise => { let revision: string | undefined; let cacheHit = false; if (cacheEnabled) { - const cacheRestored = await restoreCache([bunPath], url); + const cacheKey = createHash('sha1') + .update(url) + .digest('base64'); + + const cacheRestored = await restoreCache([bunPath], cacheKey); if (cacheRestored) { revision = await getRevision(bunPath); if (revision) {