From ad00072da870b9952d597261fc805c6e3571f54b Mon Sep 17 00:00:00 2001 From: Irbe Krumina Date: Wed, 14 Jan 2026 18:23:14 +0000 Subject: [PATCH] .github/actions/go-cache: put cigocacher bin in /tmp always Updates tailscale/corp#32493 Signed-off-by: Irbe Krumina --- .github/actions/go-cache/action.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/go-cache/action.sh b/.github/actions/go-cache/action.sh index f49d5bb77..9e43eb269 100755 --- a/.github/actions/go-cache/action.sh +++ b/.github/actions/go-cache/action.sh @@ -32,7 +32,7 @@ if [ -z "${GOPATH}" ]; then GOPATH="./tool/go" fi -BIN_PATH="${RUNNER_TEMP:-/tmp}/cigocacher$(${GOPATH} env GOEXE)" +BIN_PATH="/tmp/cigocacher$(${GOPATH} env GOEXE)" if [ -d "cmd/cigocacher" ]; then echo "cmd/cigocacher found locally, building from local source" "${GOPATH}" build -o "${BIN_PATH}" ./cmd/cigocacher