diff --git a/dist/index.js b/dist/index.js index 8cb4e33..461ecea 100644 Binary files a/dist/index.js and b/dist/index.js differ diff --git a/dist/index.js.map b/dist/index.js.map index 9f77ae0..7dfbac1 100644 Binary files a/dist/index.js.map and b/dist/index.js.map differ diff --git a/src/main.ts b/src/main.ts index e8295a6..87536a6 100644 --- a/src/main.ts +++ b/src/main.ts @@ -38,8 +38,6 @@ async function run(): Promise { ignoreReturnCode: true, } ); - core.info(`debug stdout: ${output.stdout}`); - core.info(`debug stderr: ${output.stderr}`); process.env["REVIEWDOG_GITHUB_API_TOKEN"] = core.getInput("github_token"); return await exec.exec( @@ -55,7 +53,7 @@ async function run(): Promise { ], { cwd, - input: Buffer.from(output.stdout, "utf-8"), + input: Buffer.from(output.stderr, "utf-8"), ignoreReturnCode: true, } );