From 86a00ab4af6cbb0cc4bf65b22e126f6284afb142 Mon Sep 17 00:00:00 2001 From: Zoltan Papp Date: Wed, 13 Aug 2025 13:52:11 +0200 Subject: [PATCH] Fix Go tarball version in FreeBSD build configuration (#4339) --- .github/workflows/golang-test-freebsd.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/golang-test-freebsd.yml b/.github/workflows/golang-test-freebsd.yml index 32ceb36db..cdd0910a4 100644 --- a/.github/workflows/golang-test-freebsd.yml +++ b/.github/workflows/golang-test-freebsd.yml @@ -25,8 +25,7 @@ jobs: release: "14.2" prepare: | pkg install -y curl pkgconf xorg - LATEST_VERSION=$(curl -s https://go.dev/VERSION?m=text|head -n 1) - GO_TARBALL="$LATEST_VERSION.freebsd-amd64.tar.gz" + GO_TARBALL="go1.23.12.freebsd-amd64.tar.gz" GO_URL="https://go.dev/dl/$GO_TARBALL" curl -vLO "$GO_URL" tar -C /usr/local -vxzf "$GO_TARBALL"