mirror of
https://github.com/gofiber/storage.git
synced 2025-12-19 00:38:24 +08:00
fix(clickhouse): client needs Go +1.25.3
This commit is contained in:
8
.github/workflows/benchmark.yml
vendored
8
.github/workflows/benchmark.yml
vendored
@@ -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:
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user