From 2485b41e0cb7881f35365416f32fcc11099492bc Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 1 Mar 2026 12:01:56 +0000 Subject: [PATCH 1/2] Initial plan From 6d65a2b6b90a0ae6e9d5b625b2acf458e42927f3 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 1 Mar 2026 12:12:25 +0000 Subject: [PATCH 2/2] fix: add explicit /tmp/gh-aw directory creation in setup.sh Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- actions/setup/setup.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/actions/setup/setup.sh b/actions/setup/setup.sh index 557ade5046a..22887221c99 100755 --- a/actions/setup/setup.sh +++ b/actions/setup/setup.sh @@ -37,6 +37,10 @@ echo "Safe-output-projects support: ${SAFE_OUTPUT_PROJECTS_ENABLED}" create_dir "${DESTINATION}" echo "Created directory: ${DESTINATION}" +# Create /tmp/gh-aw directory so it exists before any activation scripts run +mkdir -p /tmp/gh-aw +echo "Created /tmp/gh-aw directory" + # Get the directory where this script is located SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" JS_SOURCE_DIR="${SCRIPT_DIR}/js"