This is an automated email from the ASF dual-hosted git repository.

F21 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/calcite-avatica-go.git


The following commit(s) were added to refs/heads/main by this push:
     new 41ea915  [CALCITE-7569] Upgrade to Go 1.25 and 1.26
41ea915 is described below

commit 41ea915567bd7fdfae3c3740a1cf97668f223bfb
Author: Francis Chuang <[email protected]>
AuthorDate: Mon Jun 1 09:34:51 2026 +1000

    [CALCITE-7569] Upgrade to Go 1.25 and 1.26
---
 .github/workflows/tests.yaml | 2 +-
 docker-compose.yml           | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml
index 1a83309..f290b7d 100644
--- a/.github/workflows/tests.yaml
+++ b/.github/workflows/tests.yaml
@@ -25,7 +25,7 @@ jobs:
     strategy:
       fail-fast: false
       matrix:
-        go_version: ["1.23", "1.24"]
+        go_version: ["1.25", "1.26"]
         database:
           - [phoenix, 1.3-4.13]
           - [phoenix, 1.4-4.14]
diff --git a/docker-compose.yml b/docker-compose.yml
index b576cc9..c10f8d9 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -22,7 +22,7 @@ services:
     command: -u jdbc:hsqldb:mem:public
 
   test:
-    image: golang:${GO_VERSION:-1.24}
+    image: golang:${GO_VERSION:-1.26}
     command: sh -c "export AVATICA_FLAVOR=HSQLDB && go test -v ./...; export 
AVATICA_FLAVOR=PHOENIX && go test -v ./..."
     working_dir: /source
     environment:
@@ -36,7 +36,7 @@ services:
       - hsqldb
 
   test-phoenix:
-    image: golang:${GO_VERSION:-1.24}
+    image: golang:${GO_VERSION:-1.26}
     command: go test -v ./...
     working_dir: /source
     environment:
@@ -49,7 +49,7 @@ services:
       - phoenix
 
   test-hsqldb:
-    image: golang:${GO_VERSION:-1.24}
+    image: golang:${GO_VERSION:-1.26}
     command: go test -v ./...
     working_dir: /source
     environment:
@@ -99,7 +99,7 @@ services:
       - .:/source
 
   compile-protobuf:
-    image: golang:1.24
+    image: golang:1.26
     working_dir: /source
     command: sh -c "./docker.sh compile-protobuf"
     environment:

Reply via email to