Skip to content

Commit b6d324d

Browse files
build: upgrade dependencies (#68)
1 parent 0669f46 commit b6d324d

File tree

4 files changed

+83
-86
lines changed

4 files changed

+83
-86
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG DOCKER_VERSION=26.1.4
22

33
# dind-cleaner
4-
FROM golang:1.22-alpine3.20 AS cleaner
4+
FROM golang:1.23-alpine3.20 AS cleaner
55

66
COPY cleaner/dind-cleaner/* /go/src/github.com/codefresh-io/dind-cleaner/
77
WORKDIR /go/src/github.com/codefresh-io/dind-cleaner/
@@ -15,16 +15,16 @@ RUN CGO_ENABLED=0 go build -o /usr/local/bin/dind-cleaner ./cmd && \
1515
rm -rf /go/*
1616

1717
# bbolt
18-
FROM golang:1.22-alpine3.20 AS bbolt
18+
FROM golang:1.23-alpine3.20 AS bbolt
1919
RUN go install go.etcd.io/bbolt/cmd/bbolt@latest
2020

2121
# node-exporter
22-
FROM quay.io/prometheus/node-exporter:v1.8.1 AS node-exporter
22+
FROM quay.io/prometheus/node-exporter:v1.8.2 AS node-exporter
2323

2424
# Main
2525
FROM docker:${DOCKER_VERSION}-dind
2626

27-
RUN echo 'http://dl-cdn.alpinelinux.org/alpine/v3.20/main' >> /etc/apk/repositories \
27+
RUN echo 'http://dl-cdn.alpinelinux.org/alpine/v3.21/main' >> /etc/apk/repositories \
2828
&& apk upgrade \
2929
# Add fuse-overlayfs for comaptibility with rootless. Volumes created with rootless might use fuse-overlay formatted volumes. If those volumes are later used by dind that runs with root it'll require fuse-overlay to be able to read the volume
3030
&& apk add bash fuse-overlayfs jq --no-cache \

cleaner/dind-cleaner/go.mod

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,40 @@
11
module github.com/codefresh-io/dind-cleaner
22

3-
go 1.22
3+
go 1.23
44

55
require (
6-
github.com/docker/docker v26.0.0+incompatible
7-
github.com/golang/glog v1.1.2
8-
golang.org/x/net v0.22.0
6+
github.com/docker/docker v26.1.5+incompatible
7+
github.com/golang/glog v1.2.3
8+
golang.org/x/net v0.30.0
99
)
1010

1111
require (
12-
github.com/Microsoft/go-winio v0.6.1 // indirect
12+
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
13+
github.com/Microsoft/go-winio v0.6.2 // indirect
1314
github.com/containerd/log v0.1.0 // indirect
1415
github.com/distribution/reference v0.6.0 // indirect
15-
github.com/docker/go-connections v0.4.1-0.20180821093606-97c2040d34df // indirect
16+
github.com/docker/go-connections v0.5.0 // indirect
1617
github.com/docker/go-units v0.5.0 // indirect
1718
github.com/felixge/httpsnoop v1.0.4 // indirect
18-
github.com/go-logr/logr v1.4.1 // indirect
19+
github.com/go-logr/logr v1.4.2 // indirect
1920
github.com/go-logr/stdr v1.2.2 // indirect
2021
github.com/gogo/protobuf v1.3.2 // indirect
22+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.23.0 // indirect
2123
github.com/moby/docker-image-spec v1.3.1 // indirect
2224
github.com/moby/term v0.5.0 // indirect
2325
github.com/morikuni/aec v1.0.0 // indirect
2426
github.com/opencontainers/go-digest v1.0.0 // indirect
25-
github.com/opencontainers/image-spec v1.0.2 // indirect
27+
github.com/opencontainers/image-spec v1.1.0 // indirect
2628
github.com/pkg/errors v0.9.1 // 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
33-
golang.org/x/mod v0.12.0 // indirect
34-
golang.org/x/sys v0.18.0 // indirect
35-
golang.org/x/time v0.0.0-20210611083556-38a9dc6acbc6 // indirect
36-
golang.org/x/tools v0.12.0 // indirect
37-
gotest.tools/v3 v3.5.0 // indirect
29+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.56.0 // indirect
30+
go.opentelemetry.io/otel v1.31.0 // indirect
31+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.31.0 // indirect
32+
go.opentelemetry.io/otel/metric v1.31.0 // indirect
33+
go.opentelemetry.io/otel/sdk v1.31.0 // indirect
34+
go.opentelemetry.io/otel/trace v1.31.0 // indirect
35+
golang.org/x/sys v0.26.0 // indirect
36+
golang.org/x/time v0.7.0 // indirect
37+
google.golang.org/genproto/googleapis/api v0.0.0-20241104194629-dd2ea8efbc28 // indirect
38+
google.golang.org/genproto/googleapis/rpc v0.0.0-20241104194629-dd2ea8efbc28 // indirect
39+
gotest.tools/v3 v3.5.1 // indirect
3840
)

0 commit comments

Comments
 (0)