Skip to content

Commit e77e05b

Browse files
authored
Merge pull request #1063 from AkihiroSuda/dev
update runc (1.1.2), BuildKit (0.10.3), golang.org/x/* (master)
2 parents 1582fc8 + 04f9b47 commit e77e05b

File tree

5 files changed

+76
-56
lines changed

5 files changed

+76
-56
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919

2020
# Basic deps
2121
ARG CONTAINERD_VERSION=v1.6.4
22-
ARG RUNC_VERSION=v1.1.1
22+
ARG RUNC_VERSION=v1.1.2
2323
ARG CNI_PLUGINS_VERSION=v1.1.1
2424

2525
# Extra deps: Build
26-
ARG BUILDKIT_VERSION=v0.10.2
26+
ARG BUILDKIT_VERSION=v0.10.3
2727
# Extra deps: Lazy-pulling
2828
ARG STARGZ_SNAPSHOTTER_VERSION=v0.11.4
2929
# Extra deps: Encryption

Dockerfile.d/SHA256SUMS.d/buildkit-v0.10.2

-2
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
fbc9c433cf77c5c00db6f797155edc60b44463524ae59a4961699dca15bcee00 buildkit-v0.10.3.linux-amd64.tar.gz
2+
27e974e2b07e087f66f0c9c2b43b6f3df6f7e1746a6252580f164427337d668c buildkit-v0.10.3.linux-arm64.tar.gz

go.mod

+10-11
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ require (
4545
github.com/tidwall/gjson v1.14.1
4646
github.com/vishvananda/netlink v1.2.0-beta
4747
github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74
48-
golang.org/x/crypto v0.0.0-20220321153916-2c7772ba3064
49-
golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
50-
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
51-
golang.org/x/sys v0.0.0-20220422013727-9388b58f7150
52-
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
48+
golang.org/x/crypto v0.0.0-20220513210258-46612604a0f9
49+
golang.org/x/net v0.0.0-20220516133312-45b265872317
50+
golang.org/x/sync v0.0.0-20220513210516-0976fa681c29
51+
golang.org/x/sys v0.0.0-20220513210249-45d2b4557a2a
52+
golang.org/x/term v0.0.0-20220411215600-e5f449aeb171
5353
gopkg.in/yaml.v2 v2.4.0
5454
gotest.tools/v3 v3.2.0
5555
)
@@ -78,7 +78,7 @@ require (
7878
github.com/gogo/protobuf v1.3.2 // indirect
7979
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
8080
github.com/golang/protobuf v1.5.2 // indirect
81-
github.com/google/go-cmp v0.5.6 // indirect
81+
github.com/google/go-cmp v0.5.8 // indirect
8282
github.com/google/uuid v1.3.0 // indirect
8383
github.com/gorilla/mux v1.8.0 // indirect
8484
github.com/hashicorp/errwrap v1.1.0 // indirect
@@ -124,7 +124,7 @@ require (
124124
github.com/moby/locker v1.0.1 // indirect
125125
github.com/moby/sys/mountinfo v0.6.1 // indirect
126126
github.com/moby/sys/signal v0.7.0 // indirect
127-
github.com/moby/term v0.0.0-20210610120745-9d4ed1856297 // indirect
127+
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect
128128
github.com/morikuni/aec v1.0.0 // indirect
129129
github.com/mr-tron/base58 v1.2.0 // indirect
130130
github.com/multiformats/go-base32 v0.0.3 // indirect
@@ -133,7 +133,7 @@ require (
133133
github.com/multiformats/go-multicodec v0.4.1 // indirect
134134
github.com/multiformats/go-multihash v0.0.15 // indirect
135135
github.com/multiformats/go-varint v0.0.6 // indirect
136-
github.com/opencontainers/runc v1.1.1 // indirect
136+
github.com/opencontainers/runc v1.1.2 // indirect
137137
github.com/opencontainers/runtime-tools v0.0.0-20190417131837-cd1349b7c47e // indirect
138138
github.com/opencontainers/selinux v1.10.1 // indirect
139139
github.com/opentracing/opentracing-go v1.2.0 // indirect
@@ -160,7 +160,7 @@ require (
160160
go.opencensus.io v0.23.0 // indirect
161161
go.uber.org/atomic v1.7.0 // indirect
162162
go.uber.org/multierr v1.7.0 // indirect
163-
go.uber.org/zap v1.17.0 // indirect
163+
go.uber.org/zap v1.19.0 // indirect
164164
golang.org/x/text v0.3.7 // indirect
165165
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
166166
google.golang.org/genproto v0.0.0-20220426171045-31bebdecfb46 // indirect
@@ -172,10 +172,9 @@ require (
172172

173173
replace (
174174
// containerd main
175-
github.com/containerd/containerd => github.com/containerd/containerd v1.6.1-0.20220505233216-459179360a6b
175+
github.com/containerd/containerd => github.com/containerd/containerd v1.6.1-0.20220514185319-e217c83e8c4d
176176
// Temporary fork for avoiding importing patent-protected code: https://github.com/hashicorp/golang-lru/issues/73
177177
github.com/hashicorp/golang-lru => github.com/ktock/golang-lru v0.5.5-0.20211029085301-ec551be6f75c
178-
179178
// Temporary fork lumberjack to support Maxbytes before releasing V3.0: https://github.com/natefinch/lumberjack/pull/132)
180179
github.com/natefinch/lumberjack => github.com/fahedouch/lumberjack v0.0.0-20220505103556-d3f93c511b35
181180
)

0 commit comments

Comments
 (0)