Skip to content

Commit 5814e5f

Browse files
committed
fix(setup-cmake): use getBoolean function
1 parent 1b9c09e commit 5814e5f

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

cmake-workflow/dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cmake-workflow/dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

setup-cmake/dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

setup-cmake/dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

setup-cmake/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -350,10 +350,10 @@ async function run() {
350350
cmake_file: gh_inputs.getInput('cmake-file'),
351351
path: gh_inputs.getInput('path'),
352352
cmake_path: gh_inputs.getInput('cmake-path'),
353-
cache: gh_inputs.getBool('cache'),
354-
check_latest: gh_inputs.getBool('check-latest'),
355-
update_environment: gh_inputs.getBool('update-environment'),
356-
trace_commands: gh_inputs.getBool('trace-commands')
353+
cache: gh_inputs.getBoolean('cache'),
354+
check_latest: gh_inputs.getBoolean('check-latest'),
355+
update_environment: gh_inputs.getBoolean('update-environment'),
356+
trace_commands: gh_inputs.getBoolean('trace-commands')
357357
}
358358

359359
if (inputs.cmake_path) {

0 commit comments

Comments
 (0)