From 403eefe01bb15de7d2b77645e39df2f0c4b09935 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 17 Nov 2025 17:03:46 +0000 Subject: [PATCH 1/2] Initial plan From 986a3bb865d7468b02ddc7c051a27c4d834c8bc6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 17 Nov 2025 17:08:54 +0000 Subject: [PATCH 2/2] Add silent option to exec.getExecOutput to suppress command output Co-authored-by: neilime <314088+neilime@users.noreply.github.com> --- actions/has-installed-dependencies/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/actions/has-installed-dependencies/action.yml b/actions/has-installed-dependencies/action.yml index 078f4e0..837b078 100644 --- a/actions/has-installed-dependencies/action.yml +++ b/actions/has-installed-dependencies/action.yml @@ -120,6 +120,7 @@ runs: const parseDependencies = async (command) => { const { stdout } = await exec.getExecOutput(command, undefined, { cwd: workingDirectory, + silent: true, }); if (stdout === '') {