Skip to content

Commit 1d56df4

Browse files
authored
Update dependencies (#93)
1 parent c865256 commit 1d56df4

File tree

7 files changed

+90
-467
lines changed

7 files changed

+90
-467
lines changed

.github/workflows/docker.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323

24-
- name: Set up Go 1.18
25-
uses: actions/setup-go@v2
24+
- name: Set up Go 1.19
25+
uses: actions/setup-go@v3
2626
with:
27-
go-version: 1.18
27+
go-version: 1.19
2828
id: go
2929

3030
- name: Check out code into the Go module directory
31-
uses: actions/checkout@v2
31+
uses: actions/checkout@v3
3232

3333
- name: Lint
34-
uses: golangci/golangci-lint-action@v2
34+
uses: golangci/golangci-lint-action@v3
3535
with:
3636
args: -p bugs -p unused --timeout=3m
3737

@@ -44,7 +44,7 @@ jobs:
4444
run: bash <(curl -s https://codecov.io/bash)
4545

4646
- name: Log in to the Container registry
47-
uses: docker/login-action@v1
47+
uses: docker/login-action@v2
4848
with:
4949
registry: ${{ env.REGISTRY }}
5050
username: ${{ github.actor }}
@@ -57,7 +57,7 @@ jobs:
5757
[ "${GITHUB_EVENT_NAME}" == 'push' ] && echo "tag=latest" >> $GITHUB_ENV || true
5858
5959
- name: Build and push image
60-
uses: docker/build-push-action@v2
60+
uses: docker/build-push-action@v3
6161
with:
6262
context: .
6363
push: true

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bufbuild/buf:1.7.0 as buf
1+
FROM bufbuild/buf:1.9.0 as buf
22
FROM golang:1.19-alpine as builder
33

44
RUN apk add \

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,12 +138,12 @@ docker run -it --rm --entrypoint /cli ghcr.io/metal-stack/go-ipam
138138
The benchmarks above were performed using:
139139

140140
* cpu: Intel(R) Xeon(R) Platinum 8370C CPU @ 2.80GHz
141-
* postgres:14-alpine
141+
* postgres:15-alpine
142142
* cockroach:v22.1.0
143143
* redis:7.0-alpine
144-
* keydb:alpine_x86_64_v6.2.2
145-
* etcd:v3.5.4
146-
* mongodb:5.0.9-focal
144+
* keydb:alpine_x86_64_v6.3.1
145+
* etcd:v3.5.5
146+
* mongodb:5.0.13-focal
147147

148148
### Database Version Compatability
149149

go.mod

Lines changed: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -3,55 +3,55 @@ module github.com/metal-stack/go-ipam
33
go 1.18
44

55
require (
6-
github.com/avast/retry-go/v4 v4.1.0
7-
github.com/bufbuild/connect-go v1.0.0
6+
github.com/avast/retry-go/v4 v4.3.1
7+
github.com/bufbuild/connect-go v1.1.0
88
github.com/bufbuild/connect-grpchealth-go v1.0.0
99
github.com/bufbuild/connect-grpcreflect-go v1.0.0
1010
github.com/go-redis/redis/v8 v8.11.5
1111
github.com/jmoiron/sqlx v1.3.5
1212
github.com/klauspost/connect-compress v0.1.1
1313
github.com/lib/pq v1.10.7
1414
github.com/metal-stack/v v1.0.3
15-
github.com/stretchr/testify v1.8.0
16-
github.com/testcontainers/testcontainers-go v0.14.0
17-
github.com/urfave/cli/v2 v2.19.2
15+
github.com/stretchr/testify v1.8.1
16+
github.com/testcontainers/testcontainers-go v0.15.0
17+
github.com/urfave/cli/v2 v2.23.5
1818
go.etcd.io/etcd/client/v3 v3.5.5
19-
go.mongodb.org/mongo-driver v1.10.3
19+
go.mongodb.org/mongo-driver v1.11.0
2020
go.uber.org/zap v1.23.0
2121
go4.org/netipx v0.0.0-20220925034521-797b0c90d8ab
22-
golang.org/x/net v0.0.0-20221014081412-f15817d10f9b
23-
golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0
22+
golang.org/x/net v0.2.0
23+
golang.org/x/sync v0.1.0
2424
google.golang.org/protobuf v1.28.1
2525
)
2626

2727
require (
2828
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
29-
github.com/Microsoft/go-winio v0.5.2 // indirect
30-
github.com/Microsoft/hcsshim v0.9.4 // indirect
29+
github.com/Microsoft/go-winio v0.6.0 // indirect
30+
github.com/Microsoft/hcsshim v0.9.5 // indirect
3131
github.com/benbjohnson/clock v1.3.0 // indirect
32-
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
32+
github.com/cenkalti/backoff/v4 v4.2.0 // indirect
3333
github.com/cespare/xxhash/v2 v2.1.2 // indirect
3434
github.com/containerd/cgroups v1.0.4 // indirect
35-
github.com/containerd/containerd v1.6.8 // indirect
35+
github.com/containerd/containerd v1.6.10 // indirect
3636
github.com/coreos/go-semver v0.3.0 // indirect
37-
github.com/coreos/go-systemd/v22 v22.4.0 // indirect
37+
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
3838
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
3939
github.com/davecgh/go-spew v1.1.1 // indirect
4040
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
4141
github.com/docker/distribution v2.8.1+incompatible // indirect
42-
github.com/docker/docker v20.10.19+incompatible // indirect
42+
github.com/docker/docker v20.10.21+incompatible // indirect
4343
github.com/docker/go-connections v0.4.0 // indirect
4444
github.com/docker/go-units v0.5.0 // indirect
4545
github.com/gogo/protobuf v1.3.2 // indirect
4646
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
4747
github.com/golang/protobuf v1.5.2 // indirect
4848
github.com/golang/snappy v0.0.4 // indirect
4949
github.com/google/uuid v1.3.0 // indirect
50-
github.com/klauspost/compress v1.15.11 // indirect
50+
github.com/klauspost/compress v1.15.12 // indirect
5151
github.com/magiconair/properties v1.8.6 // indirect
5252
github.com/moby/sys/mount v0.3.3 // indirect
5353
github.com/moby/sys/mountinfo v0.6.2 // indirect
54-
github.com/moby/term v0.0.0-20220808134915-39b0c02b01ae // indirect
54+
github.com/moby/term v0.0.0-20221105221325-4eb28fa6025c // indirect
5555
github.com/montanaflynn/stats v0.6.6 // indirect
5656
github.com/morikuni/aec v1.0.0 // indirect
5757
github.com/opencontainers/go-digest v1.0.0 // indirect
@@ -68,13 +68,15 @@ require (
6868
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a // indirect
6969
go.etcd.io/etcd/api/v3 v3.5.5 // indirect
7070
go.etcd.io/etcd/client/pkg/v3 v3.5.5 // indirect
71-
go.opencensus.io v0.23.0 // indirect
71+
go.opencensus.io v0.24.0 // indirect
7272
go.uber.org/atomic v1.10.0 // indirect
7373
go.uber.org/multierr v1.8.0 // indirect
74-
golang.org/x/crypto v0.0.0-20221012134737-56aed061732a // indirect
75-
golang.org/x/sys v0.0.0-20221013171732-95e765b1cc43 // indirect
76-
golang.org/x/text v0.3.8 // indirect
77-
google.golang.org/genproto v0.0.0-20221014213838-99cd37c6964a // indirect
78-
google.golang.org/grpc v1.50.1 // indirect
74+
golang.org/x/crypto v0.3.0 // indirect
75+
golang.org/x/mod v0.7.0 // indirect
76+
golang.org/x/sys v0.2.0 // indirect
77+
golang.org/x/text v0.4.0 // indirect
78+
golang.org/x/tools v0.3.0 // indirect
79+
google.golang.org/genproto v0.0.0-20221118155620-16455021b5e6 // indirect
80+
google.golang.org/grpc v1.51.0 // indirect
7981
gopkg.in/yaml.v3 v3.0.1 // indirect
8082
)

0 commit comments

Comments
 (0)