From 192291eea02d08427ddcb93118ed3a09eb04972f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Feb 2026 14:55:52 +0000 Subject: [PATCH 1/2] Initial plan From 52bb9ed5544909b3ed06aa83f56dd9620e4f30c6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Feb 2026 14:58:43 +0000 Subject: [PATCH 2/2] fix: convert unsafe template string exec.exec to safe array form in upload_assets.cjs Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- actions/setup/js/upload_assets.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/setup/js/upload_assets.cjs b/actions/setup/js/upload_assets.cjs index e32f89618fb..7003cfac39f 100644 --- a/actions/setup/js/upload_assets.cjs +++ b/actions/setup/js/upload_assets.cjs @@ -153,7 +153,7 @@ async function main() { fs.copyFileSync(assetSourcePath, targetFileName); // Add to git - await exec.exec(`git add "${targetFileName}"`); + await exec.exec("git", ["add", targetFileName]); uploadCount++; hasChanges = true;