(inputName: string, defaultValue = false)
| 16 | } |
| 17 | |
| 18 | export function getBooleanInput(inputName: string, defaultValue = false) { |
| 19 | return ( |
| 20 | (core.getInput(inputName) || String(defaultValue)).toUpperCase() === 'TRUE' |
| 21 | ); |
| 22 | } |
| 23 | |
| 24 | export function getVersionFromToolcachePath(toolPath: string) { |
| 25 | if (toolPath) { |
no outgoing calls
no test coverage detected