diff --git a/dist/index.js b/dist/index.js index 6ea7f58..57fd99a 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1090,12 +1090,7 @@ function run() { const username = core.getInput('username'); const password = core.getInput('password', { required: true }); if (yield ecr.isECR(registry)) { - yield exec.exec('aws', ['--version'], true).then(res => { - if (res.stderr != '' && !res.success) { - throw new Error(res.stderr); - } - core.info(`💡 Using ${res.stdout}`); - }); + yield exec.exec('aws', ['--version'], false); const ecrRegion = yield ecr.getRegion(registry); process.env.AWS_ACCESS_KEY_ID = username; process.env.AWS_SECRET_ACCESS_KEY = password; diff --git a/src/main.ts b/src/main.ts index 4994f8f..79d3a84 100644 --- a/src/main.ts +++ b/src/main.ts @@ -19,13 +19,7 @@ async function run(): Promise { const password: string = core.getInput('password', {required: true}); if (await ecr.isECR(registry)) { - await exec.exec('aws', ['--version'], true).then(res => { - if (res.stderr != '' && !res.success) { - throw new Error(res.stderr); - } - core.info(`💡 Using ${res.stdout}`); - }); - + await exec.exec('aws', ['--version'], false); const ecrRegion = await ecr.getRegion(registry); process.env.AWS_ACCESS_KEY_ID = username; process.env.AWS_SECRET_ACCESS_KEY = password;