Skip to content

Commit 738edc8

Browse files
committed
fix(clickhouse): client needs Go +1.25.3
1 parent a13be92 commit 738edc8

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/benchmark.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,19 @@ jobs:
4949
steps:
5050
- name: Fetch Repository
5151
uses: actions/checkout@v6
52+
5253
- name: Install Go
54+
if: ${{ matrix.package != 'clickhouse' }}
5355
uses: actions/setup-go@v6
5456
with:
5557
# NOTE: Keep this in sync with the version from go.mod
5658
go-version: "1.24.x"
59+
- name: Install Go (For clickhouse)
60+
uses: actions/setup-go@v6
61+
if: ${{ matrix.package == 'clickhouse' }}
62+
with:
63+
go-version: "1.25.x"
64+
5765
- name: Setup Node.js
5866
uses: actions/setup-node@v6
5967
with:

clickhouse/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/gofiber/storage/clickhouse
22

3-
go 1.24.0
3+
go 1.25.3
44

55
require (
66
github.com/ClickHouse/clickhouse-go/v2 v2.41.0

0 commit comments

Comments
 (0)