fix: update Go installation scripts to version 1.25.6 and remove obsolete 1.25.5 script

This commit is contained in:
GitHub Actions
2026-01-26 07:42:42 +00:00
parent def1423122
commit bbdeedda5d
18 changed files with 754 additions and 553 deletions
@@ -1,10 +1,10 @@
#!/usr/bin/env bash
set -euo pipefail
# Script to install Go 1.25.5 to /usr/local/go
# Usage: sudo ./scripts/install-go-1.25.5.sh
# Script to install Go 1.25.6 to /usr/local/go
# Usage: sudo ./scripts/install-go-1.25.6.sh
GO_VERSION="1.25.5"
GO_VERSION="1.25.6"
ARCH="linux-amd64"
TARFILE="go${GO_VERSION}.${ARCH}.tar.gz"
TMPFILE="/tmp/${TARFILE}"