From b0ec39ea7aa25a0240c76148a752a793ac936d1b Mon Sep 17 00:00:00 2001 From: James King Date: Sat, 19 Mar 2022 15:53:53 +0000 Subject: [PATCH] Use --no-interaction by default (#34) --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 4c84850..ab5f7f3 100644 --- a/index.js +++ b/index.js @@ -82,7 +82,7 @@ async function dep() { let cmd = core.getInput('dep') - let p = execa.command(`php ${dep} --ansi -v ${cmd}`) + let p = execa.command(`php ${dep} --no-interaction --ansi -v ${cmd}`) p.stdout.pipe(process.stdout) p.stderr.pipe(process.stderr)