From b1c7abb046c621279da170fbc18feaae908d555d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 7 Jul 2026 20:15:28 +0000 Subject: [PATCH 1/2] Initial plan From 0b9eac6c2b1ddd3a73e798a559d37cf67c210f71 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 7 Jul 2026 20:22:16 +0000 Subject: [PATCH 2/2] fix: quote verify-gomod remediation commands --- .github/scripts/check-gomod.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/check-gomod.sh b/.github/scripts/check-gomod.sh index 10af30483b..92d149e420 100755 --- a/.github/scripts/check-gomod.sh +++ b/.github/scripts/check-gomod.sh @@ -17,7 +17,7 @@ go mod tidy go mod verify if [ -n "$(git status --porcelain --untracked-files=no)" ]; then - echo "actions Go mod isn't up to date. Please run `cd actions && go mod tidy`" + echo "actions Go mod isn't up to date. Please run 'cd actions && go mod tidy'" echo "The following go files did differ after tidying them:" git status --porcelain exit 1 @@ -30,7 +30,7 @@ go mod tidy go mod verify if [ -n "$(git status --porcelain --untracked-files=no)" ]; then - echo "interoperability Go mod isn't up to date. Please run `cd interoperability && go mod tidy`" + echo "interoperability Go mod isn't up to date. Please run 'cd interoperability && go mod tidy'" echo "The following go files did differ after tidying them:" git status --porcelain exit 1