From d86d62a1a38c2274a69ef94f57463423465abb49 Mon Sep 17 00:00:00 2001 From: Merlin Date: Thu, 24 Oct 2024 17:17:03 -0400 Subject: [PATCH] Update src/utils/inputs.ts Co-authored-by: Kevin Stillhammer --- src/utils/inputs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/inputs.ts b/src/utils/inputs.ts index 323f6fb..f010106 100644 --- a/src/utils/inputs.ts +++ b/src/utils/inputs.ts @@ -7,7 +7,7 @@ export const enableCache = core.getInput("enable-cache") === "true"; export const cacheSuffix = core.getInput("cache-suffix") || ""; export const cacheLocalPath = getCacheLocalPath(); export const cacheDependencyGlob = core.getInput("cache-dependency-glob"); -export const pruneCache = (core.getInput("prune-cache") || "true") === "true"; +export const pruneCache = core.getInput("prune-cache") === "true"; export const toolBinDir = getToolBinDir(); export const toolDir = getToolDir(); export const githubToken = core.getInput("github-token");