Skip to content

Commit b85c502

Browse files
authored
Upgrade deps (#780)
* upgrade hashicorp/vault/api * upgrade jackc/pgx/v4 * upgrade google/uuid * upgrade go-jose/go-jose/v3 * upgrade github_actions * Fix go.mod
1 parent 6b1b22b commit b85c502

File tree

5 files changed

+97
-101
lines changed

5 files changed

+97
-101
lines changed

.github/workflows/cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,18 @@ jobs:
3030
- uses: actions/checkout@v4
3131

3232
- name: Set up Docker Buildx
33-
uses: docker/setup-buildx-action@v2
33+
uses: docker/setup-buildx-action@v3
3434

3535
- name: Log in to registry
36-
uses: docker/login-action@v2
36+
uses: docker/login-action@v3
3737
with:
3838
registry: ghcr.io
3939
username: ${{ github.actor }}
4040
password: ${{ secrets.GITHUB_TOKEN }}
4141

4242
- name: Build and push
4343
id: docker-build
44-
uses: docker/build-push-action@v4
44+
uses: docker/build-push-action@v6
4545
with:
4646
push: true
4747
file: ./build/package/Dockerfile

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions/checkout@v4
2323

2424
- name: Install Go
25-
uses: actions/setup-go@v4
25+
uses: actions/setup-go@v5
2626
with:
2727
go-version: '1.21'
2828
cache: true
@@ -61,7 +61,7 @@ jobs:
6161
uses: actions/checkout@v4
6262

6363
- name: Install Go
64-
uses: actions/setup-go@v4
64+
uses: actions/setup-go@v5
6565
with:
6666
go-version: '1.21'
6767
cache: true
@@ -110,7 +110,7 @@ jobs:
110110
uses: actions/checkout@v4
111111

112112
- name: Install Go
113-
uses: actions/setup-go@v4
113+
uses: actions/setup-go@v5
114114
with:
115115
go-version: '1.21'
116116
cache: true
@@ -135,7 +135,7 @@ jobs:
135135
uses: actions/checkout@v4
136136

137137
- name: Install Go
138-
uses: actions/setup-go@v4
138+
uses: actions/setup-go@v5
139139
with:
140140
go-version: '1.21'
141141
cache: true
@@ -159,7 +159,7 @@ jobs:
159159
uses: actions/checkout@v4
160160

161161
- name: Install Go
162-
uses: actions/setup-go@v4
162+
uses: actions/setup-go@v5
163163
with:
164164
go-version: '1.21'
165165
cache: true

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ jobs:
1818
fetch-depth: 0
1919

2020
- name: Install Go
21-
uses: actions/setup-go@v4
21+
uses: actions/setup-go@v5
2222
with:
2323
go-version: '1.21'
2424
cache: true
2525

2626
- name: Run GoReleaser
27-
uses: goreleaser/goreleaser-action@v4
27+
uses: goreleaser/goreleaser-action@v6
2828
with:
2929
distribution: goreleaser
3030
version: latest

go.mod

Lines changed: 22 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@ require (
1414
github.com/bitly/go-simplejson v0.5.1
1515
github.com/bmatcuk/doublestar/v4 v4.0.2
1616
github.com/bufbuild/protocompile v0.13.0
17-
github.com/cenkalti/backoff/v4 v4.2.1
17+
github.com/cenkalti/backoff/v4 v4.3.0
1818
github.com/cespare/xxhash/v2 v2.2.0
1919
github.com/dominikbraun/graph v0.23.0
2020
github.com/elliotchance/orderedmap/v2 v2.4.0
2121
github.com/euank/go-kmsg-parser v2.0.0+incompatible
2222
github.com/go-faster/jx v1.1.0
2323
github.com/go-redis/redis v6.15.9+incompatible
2424
github.com/golang/mock v1.6.0
25-
github.com/google/uuid v1.3.0
25+
github.com/google/uuid v1.6.0
2626
github.com/hashicorp/golang-lru/v2 v2.0.7
27-
github.com/hashicorp/vault/api v1.9.2
28-
github.com/jackc/pgconn v1.14.1
29-
github.com/jackc/pgproto3/v2 v2.3.2
30-
github.com/jackc/pgx/v4 v4.18.1
27+
github.com/hashicorp/vault/api v1.16.0
28+
github.com/jackc/pgconn v1.14.3
29+
github.com/jackc/pgproto3/v2 v2.3.3
30+
github.com/jackc/pgx/v4 v4.18.3
3131
github.com/klauspost/compress v1.17.8
3232
github.com/minio/minio-go v6.0.14+incompatible
3333
github.com/ozontech/insane-json v0.1.9
@@ -47,7 +47,7 @@ require (
4747
go.uber.org/atomic v1.11.0
4848
go.uber.org/automaxprocs v1.5.3
4949
go.uber.org/zap v1.25.0
50-
golang.org/x/net v0.21.0
50+
golang.org/x/net v0.35.0
5151
google.golang.org/protobuf v1.33.1-0.20240408130810-98873a205002
5252
gopkg.in/yaml.v2 v2.4.0
5353
gopkg.in/yaml.v3 v3.0.1
@@ -63,7 +63,6 @@ require (
6363
github.com/andybalholm/brotli v1.0.5 // indirect
6464
github.com/benbjohnson/clock v1.3.0 // indirect
6565
github.com/beorn7/perks v1.0.1 // indirect
66-
github.com/cenkalti/backoff/v3 v3.0.0 // indirect
6766
github.com/cilium/ebpf v0.9.1 // indirect
6867
github.com/containerd/cgroups/v3 v3.0.1 // indirect
6968
github.com/coreos/go-systemd/v22 v22.3.2 // indirect
@@ -74,7 +73,7 @@ require (
7473
github.com/go-faster/city v1.0.1 // indirect
7574
github.com/go-faster/errors v0.6.1 // indirect
7675
github.com/go-ini/ini v1.62.0 // indirect
77-
github.com/go-jose/go-jose/v3 v3.0.0 // indirect
76+
github.com/go-jose/go-jose/v4 v4.0.4 // indirect
7877
github.com/go-logr/logr v1.3.0 // indirect
7978
github.com/go-logr/stdr v1.2.2 // indirect
8079
github.com/go-openapi/jsonpointer v0.19.6 // indirect
@@ -89,19 +88,19 @@ require (
8988
github.com/hashicorp/errwrap v1.1.0 // indirect
9089
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
9190
github.com/hashicorp/go-multierror v1.1.1 // indirect
92-
github.com/hashicorp/go-retryablehttp v0.6.6 // indirect
91+
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
9392
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
94-
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.6 // indirect
93+
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.9 // indirect
9594
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect
96-
github.com/hashicorp/go-sockaddr v1.0.2 // indirect
95+
github.com/hashicorp/go-sockaddr v1.0.7 // indirect
9796
github.com/hashicorp/go-version v1.6.0 // indirect
9897
github.com/hashicorp/hcl v1.0.0 // indirect
99-
github.com/imdario/mergo v0.3.7 // indirect
98+
github.com/imdario/mergo v0.3.11 // indirect
10099
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
101100
github.com/jackc/pgio v1.0.0 // indirect
102101
github.com/jackc/pgpassfile v1.0.0 // indirect
103-
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
104-
github.com/jackc/pgtype v1.14.0 // indirect
102+
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
103+
github.com/jackc/pgtype v1.14.4 // indirect
105104
github.com/jackc/puddle v1.3.0 // indirect
106105
github.com/jackc/puddle/v2 v2.2.1 // indirect
107106
github.com/josharian/intern v1.0.0 // indirect
@@ -140,15 +139,15 @@ require (
140139
go.opentelemetry.io/otel/metric v1.16.0 // indirect
141140
go.opentelemetry.io/otel/trace v1.16.0 // indirect
142141
go.uber.org/multierr v1.11.0 // indirect
143-
golang.org/x/crypto v0.23.0 // indirect
144-
golang.org/x/mod v0.12.0 // indirect
142+
golang.org/x/crypto v0.33.0 // indirect
143+
golang.org/x/mod v0.17.0 // indirect
145144
golang.org/x/oauth2 v0.10.0 // indirect
146-
golang.org/x/sync v0.7.0 // indirect
147-
golang.org/x/sys v0.20.0 // indirect
148-
golang.org/x/term v0.20.0 // indirect
149-
golang.org/x/text v0.15.0 // indirect
150-
golang.org/x/time v0.3.0 // indirect
151-
golang.org/x/tools v0.12.0 // indirect
145+
golang.org/x/sync v0.11.0 // indirect
146+
golang.org/x/sys v0.30.0 // indirect
147+
golang.org/x/term v0.29.0 // indirect
148+
golang.org/x/text v0.22.0 // indirect
149+
golang.org/x/time v0.10.0 // indirect
150+
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
152151
google.golang.org/appengine v1.6.7 // indirect
153152
gopkg.in/inf.v0 v0.9.1 // indirect
154153
gopkg.in/ini.v1 v1.62.0 // indirect

0 commit comments

Comments
 (0)