Use --no-interaction by default (#34)

This commit is contained in:
James King 2022-03-19 15:53:53 +00:00 committed by GitHub
parent 45192b5748
commit b0ec39ea7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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)