mirror of
https://github.com/astral-sh/setup-uv.git
synced 2025-04-05 23:25:19 -04:00
Update src/utils/inputs.ts
Co-authored-by: Kevin Stillhammer <kevin.stillhammer@gmail.com>
This commit is contained in:
parent
bd646556e4
commit
d86d62a1a3
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Reference in a new issue