add silent

This commit is contained in:
Dmitry Shibanov 2022-07-12 10:30:30 +02:00
parent 5b949b50c3
commit aab7cc882a
2 changed files with 2 additions and 2 deletions

View file

@ -44,7 +44,7 @@ export async function run() {
const {stdout: installedVersion} = await exec.getExecOutput(
'node',
['--version'],
{ignoreReturnCode: true}
{ignoreReturnCode: true, silent: false}
);
core.setOutput('node-version', installedVersion);