Skip to content

Commit 04019eb

Browse files
authored
Upgrade go deps (#976)
1 parent 53080f4 commit 04019eb

File tree

8 files changed

+117
-163
lines changed

8 files changed

+117
-163
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- main
77
pull_request:
8+
workflow_dispatch:
89

910
concurrency:
1011
group: ${{ github.workflow }}-${{ github.ref }}
@@ -24,7 +25,7 @@ jobs:
2425

2526
steps:
2627
- name: Checkout code
27-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2829
- name: Install Go
2930
uses: actions/setup-go@v5
3031
with:

.github/workflows/integration.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- main
77
pull_request:
8+
workflow_dispatch:
89

910
concurrency:
1011
group: ${{ github.workflow }}-${{ github.ref }}
@@ -18,7 +19,7 @@ jobs:
1819

1920
steps:
2021
- name: Checkout code
21-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2223
- name: Install Go
2324
uses: actions/setup-go@v5
2425
with:

.github/workflows/lint.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- main
77
pull_request:
8+
workflow_dispatch:
89

910
concurrency:
1011
group: ${{ github.workflow }}-${{ github.ref }}
@@ -16,7 +17,7 @@ jobs:
1617
runs-on: ubuntu-latest
1718
steps:
1819
- name: Checkout code
19-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2021
- uses: actions/setup-go@v5
2122
with:
2223
go-version: "stable"

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
goreleaser:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
with:
1414
fetch-depth: 0
1515
- run: git fetch --force --tags

go.mod

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -5,39 +5,40 @@ go 1.23.0
55
toolchain go1.24.1
66

77
require (
8-
github.com/ClickHouse/clickhouse-go/v2 v2.35.0
9-
github.com/go-sql-driver/mysql v1.9.2
10-
github.com/jackc/pgx/v5 v5.7.4
8+
github.com/ClickHouse/clickhouse-go/v2 v2.40.1
9+
github.com/go-sql-driver/mysql v1.9.3
10+
github.com/jackc/pgx/v5 v5.7.5
1111
github.com/joho/godotenv v1.5.1
1212
github.com/mfridman/interpolate v0.0.2
1313
github.com/mfridman/xflag v0.1.0
14-
github.com/microsoft/go-mssqldb v1.8.0
14+
github.com/microsoft/go-mssqldb v1.9.2
1515
github.com/sethvargo/go-retry v0.3.0
16-
github.com/stretchr/testify v1.10.0
16+
github.com/stretchr/testify v1.11.0
1717
github.com/tursodatabase/libsql-client-go v0.0.0-20240902231107-85af5b9d094d
1818
github.com/vertica/vertica-sql-go v1.3.3
1919
github.com/ydb-platform/ydb-go-sdk/v3 v3.108.1
2020
github.com/ziutek/mymysql v1.5.4
2121
go.uber.org/multierr v1.11.0
22-
golang.org/x/sync v0.14.0
23-
modernc.org/sqlite v1.37.0
22+
golang.org/x/sync v0.16.0
23+
modernc.org/sqlite v1.38.2
2424
)
2525

2626
require (
2727
filippo.io/edwards25519 v1.1.0 // indirect
28-
github.com/ClickHouse/ch-go v0.66.0 // indirect
29-
github.com/andybalholm/brotli v1.1.1 // indirect
30-
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
31-
github.com/coder/websocket v1.8.13 // indirect
28+
github.com/ClickHouse/ch-go v0.67.0 // indirect
29+
github.com/andybalholm/brotli v1.2.0 // indirect
30+
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
31+
github.com/coder/websocket v1.8.12 // indirect
3232
github.com/davecgh/go-spew v1.1.1 // indirect
3333
github.com/dustin/go-humanize v1.0.1 // indirect
34-
github.com/elastic/go-sysinfo v1.15.3 // indirect
34+
github.com/elastic/go-sysinfo v1.15.4 // indirect
3535
github.com/elastic/go-windows v1.0.2 // indirect
3636
github.com/go-faster/city v1.0.1 // indirect
3737
github.com/go-faster/errors v0.7.1 // indirect
3838
github.com/golang-jwt/jwt/v4 v4.5.2 // indirect
3939
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect
4040
github.com/golang-sql/sqlexp v0.1.0 // indirect
41+
github.com/golang/protobuf v1.5.3 // indirect
4142
github.com/google/uuid v1.6.0 // indirect
4243
github.com/jackc/pgpassfile v1.0.0 // indirect
4344
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
@@ -49,27 +50,27 @@ require (
4950
github.com/paulmach/orb v0.11.1 // indirect
5051
github.com/pierrec/lz4/v4 v4.1.22 // indirect
5152
github.com/pmezard/go-difflib v1.0.0 // indirect
52-
github.com/prometheus/procfs v0.16.1 // indirect
53+
github.com/prometheus/procfs v0.15.1 // indirect
5354
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
5455
github.com/rogpeppe/go-internal v1.14.1 // indirect
5556
github.com/segmentio/asm v1.2.0 // indirect
5657
github.com/shopspring/decimal v1.4.0 // indirect
5758
github.com/ydb-platform/ydb-go-genproto v0.0.0-20241112172322-ea1f63298f77 // indirect
58-
go.opentelemetry.io/otel v1.35.0 // indirect
59-
go.opentelemetry.io/otel/trace v1.35.0 // indirect
60-
golang.org/x/crypto v0.38.0 // indirect
61-
golang.org/x/exp v0.0.0-20250506013437-ce4c2cf36ca6 // indirect
62-
golang.org/x/net v0.40.0 // indirect
63-
golang.org/x/sys v0.33.0 // indirect
64-
golang.org/x/text v0.25.0 // indirect
65-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250324211829-b45e905df463 // indirect
66-
google.golang.org/grpc v1.71.0 // indirect
67-
google.golang.org/protobuf v1.36.6 // indirect
59+
go.opentelemetry.io/otel v1.37.0 // indirect
60+
go.opentelemetry.io/otel/trace v1.37.0 // indirect
61+
golang.org/x/crypto v0.40.0 // indirect
62+
golang.org/x/exp v0.0.0-20250620022241-b7579e27df2b // indirect
63+
golang.org/x/net v0.42.0 // indirect
64+
golang.org/x/sys v0.34.0 // indirect
65+
golang.org/x/text v0.27.0 // indirect
66+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect
67+
google.golang.org/grpc v1.62.1 // indirect
68+
google.golang.org/protobuf v1.33.0 // indirect
6869
gopkg.in/yaml.v3 v3.0.1 // indirect
6970
howett.net/plist v1.0.1 // indirect
70-
modernc.org/libc v1.65.0 // indirect
71+
modernc.org/libc v1.66.3 // indirect
7172
modernc.org/mathutil v1.7.1 // indirect
72-
modernc.org/memory v1.10.0 // indirect
73+
modernc.org/memory v1.11.0 // indirect
7374
)
7475

7576
retract (

0 commit comments

Comments
 (0)