mirror of
https://github.com/actions/cache.git
synced 2025-04-21 11:36:45 +00:00
Address review comments and update tests
This commit is contained in:
parent
af9067e3c7
commit
2637f06e5f
16 changed files with 219 additions and 56 deletions
3
dist/save-only/index.js
vendored
3
dist/save-only/index.js
vendored
|
@ -38697,7 +38697,8 @@ function getInputAsInt(name, options) {
|
|||
}
|
||||
exports.getInputAsInt = getInputAsInt;
|
||||
function getInputAsBool(name, options) {
|
||||
return core.getBooleanInput(name, options);
|
||||
const result = core.getInput(name, options);
|
||||
return result.toLowerCase() === "true";
|
||||
}
|
||||
exports.getInputAsBool = getInputAsBool;
|
||||
function isCacheFeatureAvailable() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue