From a647b11d53ade5305863f109e870124268a89594 Mon Sep 17 00:00:00 2001 From: Dave Thompson Date: Mon, 31 Aug 2026 15:28:42 -0400 Subject: [PATCH] ci(release): isolate Go fetch validation Run the release Go module fetchability probe from a temporary directory so go mod init does not collide with the repository root module. Generated by GPT-5 via Codex CLI under supervision of @3leapsdave Co-Authored-By: GPT-5 Role: devlead Committer-of-Record: @3leapsdave --- .github/workflows/validate-release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/validate-release.yml b/.github/workflows/validate-release.yml index 5722ab9..772e233 100644 --- a/.github/workflows/validate-release.yml +++ b/.github/workflows/validate-release.yml @@ -37,6 +37,8 @@ jobs: GO_VERSION="v${VERSION}" echo "Testing: go get ${GO_MODULE}@${GO_VERSION}" + WORKDIR="$(mktemp -d)" + cd "${WORKDIR}" go mod init test-sysprims go get "${GO_MODULE}@${GO_VERSION}"