From 945cc47d55de0c9fd41e3b81d55712113a225e79 Mon Sep 17 00:00:00 2001 From: Matt Topol Date: Thu, 11 Jun 2026 16:43:01 -0400 Subject: [PATCH] chore: bump Go to 1.26.4 Bump the manylinux builder image's Go toolchain from 1.26.1 to 1.26.4 so driver artifacts are compiled against a CVE-patched stdlib. The Docker Compose Build workflow tags images as ghcr.io/adbc-drivers/dev:${MANYLINUX}-go${GO}, so this produces a new manylinux2014-go1.26.4 image once published. Needed by adbc-drivers/snowflake#149, which bumps the driver go.mod to 1.26.4. Without a matching toolchain image the in-container build fails with 'mkdir /go: permission denied' because the older 1.26.1 toolchain tries to auto-download 1.26.4 into a non-writable GOPATH. --- adbc_drivers_dev/.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adbc_drivers_dev/.env b/adbc_drivers_dev/.env index 942fb08..9ec0919 100644 --- a/adbc_drivers_dev/.env +++ b/adbc_drivers_dev/.env @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -GO=1.26.1 +GO=1.26.4 LIBCLANG=18.1.1 MANYLINUX=manylinux2014 RUST=1.93.1