fix wrong go version
Some checks failed
Build Process Supervisor / build (amd64, , linux) (push) Failing after 22s
Build Process Supervisor / build (amd64, .exe, windows) (push) Failing after 23s
Build Process Supervisor / build (arm, 6, , linux) (push) Failing after 22s
Build Process Supervisor / build (arm64, , linux) (push) Failing after 22s

This commit is contained in:
Adrian Zürcher
2025-08-05 15:23:16 +02:00
parent a0046e1848
commit 79ad631494

View File

@@ -44,7 +44,7 @@ jobs:
if [ ! -x "$GOROOT/bin/go" ]; then
echo "Go not found in $GOROOT, downloading latest stable..."
GO_VERSION=$(curl -s https://go.dev/VERSION?m=text)
GO_VERSION=$(curl -s https://go.dev/VERSION?m=text | tr -d '\n\r')
echo "Latest version is $GO_VERSION"
mkdir -p /data/go