From df990d4dd4da03c898d744fa00349532331df0ce Mon Sep 17 00:00:00 2001 From: Denis Rumyantsev Date: Wed, 19 Oct 2022 09:58:39 +0200 Subject: [PATCH] fix ToolRunner - _getSpawnSyncOptions --- node/toolrunner.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/node/toolrunner.ts b/node/toolrunner.ts index 843dfe2b7..8e0607c7b 100644 --- a/node/toolrunner.ts +++ b/node/toolrunner.ts @@ -594,6 +594,7 @@ export class ToolRunner extends events.EventEmitter { private _getSpawnSyncOptions(options: IExecSyncOptions): child.SpawnSyncOptions { let result = {}; + result.maxBuffer = 1024 * 1024 * 1024; result.cwd = options.cwd; result.env = options.env; result.shell = options.shell;