fix(clickhouse): client needs Go +1.25.3

This commit is contained in:
Manuel de la Peña
2025-11-24 16:01:38 +01:00
parent a13be9287d
commit 738edc851b
2 changed files with 9 additions and 1 deletions

View File

@@ -49,11 +49,19 @@ jobs:
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
if: ${{ matrix.package != 'clickhouse' }}
uses: actions/setup-go@v6
with:
# NOTE: Keep this in sync with the version from go.mod
go-version: "1.24.x"
- name: Install Go (For clickhouse)
uses: actions/setup-go@v6
if: ${{ matrix.package == 'clickhouse' }}
with:
go-version: "1.25.x"
- name: Setup Node.js
uses: actions/setup-node@v6
with:

View File

@@ -1,6 +1,6 @@
module github.com/gofiber/storage/clickhouse
go 1.24.0
go 1.25.3
require (
github.com/ClickHouse/clickhouse-go/v2 v2.41.0