Skip to content

Commit 939f29b

Browse files
build: fix CVEs (#60)
* build: fix CVEs * ci: bump version
1 parent e0cc984 commit 939f29b

File tree

4 files changed

+89
-159
lines changed

4 files changed

+89
-159
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG DOCKER_VERSION=25.0.4
1+
ARG DOCKER_VERSION=26.0.0
22

33
# dind-cleaner
44
FROM golang:1.22-alpine3.19 AS cleaner

cleaner/dind-cleaner/go.mod

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,39 @@
11
module github.com/codefresh-io/dind-cleaner
22

3-
go 1.21
3+
go 1.22
44

55
require (
6-
github.com/docker/docker v24.0.5+incompatible
6+
github.com/docker/docker v26.0.0+incompatible
77
github.com/golang/glog v1.1.2
8-
golang.org/x/net v0.14.0
8+
golang.org/x/net v0.23.0
99
)
1010

1111
require (
12-
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
1312
github.com/Microsoft/go-winio v0.6.1 // indirect
14-
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect
15-
github.com/davecgh/go-spew v1.1.1 // indirect
16-
github.com/docker/distribution v2.8.2+incompatible // indirect
13+
github.com/containerd/log v0.1.0 // indirect
14+
github.com/distribution/reference v0.6.0 // indirect
1715
github.com/docker/go-connections v0.4.1-0.20180821093606-97c2040d34df // indirect
1816
github.com/docker/go-units v0.5.0 // indirect
17+
github.com/felixge/httpsnoop v1.0.4 // indirect
18+
github.com/go-logr/logr v1.4.1 // indirect
19+
github.com/go-logr/stdr v1.2.2 // indirect
1920
github.com/gogo/protobuf v1.3.2 // indirect
20-
github.com/google/go-cmp v0.5.0 // indirect
21-
github.com/gorilla/mux v1.8.0 // indirect
21+
github.com/moby/docker-image-spec v1.3.1 // indirect
22+
github.com/moby/term v0.5.0 // indirect
23+
github.com/morikuni/aec v1.0.0 // indirect
2224
github.com/opencontainers/go-digest v1.0.0 // indirect
2325
github.com/opencontainers/image-spec v1.0.2 // indirect
2426
github.com/pkg/errors v0.9.1 // indirect
25-
github.com/sirupsen/logrus v1.9.0 // indirect
26-
github.com/stretchr/testify v1.7.0 // indirect
27+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect
28+
go.opentelemetry.io/otel v1.24.0 // indirect
29+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.24.0 // indirect
30+
go.opentelemetry.io/otel/metric v1.24.0 // indirect
31+
go.opentelemetry.io/otel/sdk v1.24.0 // indirect
32+
go.opentelemetry.io/otel/trace v1.24.0 // indirect
2733
golang.org/x/mod v0.12.0 // indirect
28-
golang.org/x/sys v0.11.0 // indirect
34+
golang.org/x/sync v0.5.0 // indirect
35+
golang.org/x/sys v0.18.0 // indirect
2936
golang.org/x/time v0.0.0-20210611083556-38a9dc6acbc6 // indirect
3037
golang.org/x/tools v0.12.0 // indirect
31-
google.golang.org/grpc v1.39.0 // indirect
32-
gotest.tools v2.2.0+incompatible // indirect
38+
gotest.tools/v3 v3.5.1 // indirect
3339
)

0 commit comments

Comments
 (0)