Fix caching using update key

This commit is contained in:
Eliza Brock Marcum 2020-06-24 13:50:45 -05:00
parent 2d697b4d9c
commit 5b41e77e7a
5 changed files with 21 additions and 28 deletions

View file

@ -56,10 +56,3 @@ export function getInputAsArray(
.map(s => s.trim())
.filter(x => x !== "");
}
export function getInputAsBoolean(
name: string,
options?: core.InputOptions
): boolean {
return core.getInput(name, options) === "true";
}