Skip to content

Commit 9d2b7a8

Browse files
committed
Omnibus dependabot update
Consolidate and resolve the dependabot PRs (mostly handle nested module): - 2267 - 2296 - 2307 - 2315 - 2323 - 2324 - 2333 - 2334 - 2335 - 2336 - 2339 - 2340 - 2341 - 2345 (https://github.com/microsoft/hcsshim/security/dependabot/113) - 2346 (https://github.com/microsoft/hcsshim/security/dependabot/115) Two commits: first is core updates, second is module tidy and vendor, along with (protobuf) file regen. Signed-off-by: Hamza El-Saawy <[email protected]>
1 parent 36c1161 commit 9d2b7a8

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

go.mod

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/Microsoft/hcsshim
33
go 1.22.0
44

55
require (
6-
github.com/Microsoft/cosesign1go v1.2.0
6+
github.com/Microsoft/cosesign1go v1.4.0
77
github.com/Microsoft/didx509go v0.0.3
88
github.com/Microsoft/go-winio v0.6.2
99
github.com/blang/semver/v4 v4.0.0
@@ -23,8 +23,8 @@ require (
2323
github.com/josephspurrier/goversioninfo v1.4.0
2424
github.com/linuxkit/virtsock v0.0.0-20201010232012-f8cee7dfc7a3
2525
github.com/mattn/go-shellwords v1.0.12
26-
github.com/open-policy-agent/opa v0.68.0
27-
github.com/opencontainers/runc v1.1.14
26+
github.com/open-policy-agent/opa v0.70.0
27+
github.com/opencontainers/runc v1.2.3
2828
github.com/opencontainers/runtime-spec v1.2.0
2929
github.com/pelletier/go-toml v1.9.5
3030
github.com/pkg/errors v0.9.1
@@ -34,12 +34,12 @@ require (
3434
github.com/vishvananda/netns v0.0.4
3535
go.etcd.io/bbolt v1.3.10
3636
go.opencensus.io v0.24.0
37-
go.uber.org/mock v0.4.0
38-
golang.org/x/sync v0.8.0
39-
golang.org/x/sys v0.25.0
40-
google.golang.org/grpc v1.67.0
37+
go.uber.org/mock v0.5.0
38+
golang.org/x/sync v0.10.0
39+
golang.org/x/sys v0.28.0
40+
google.golang.org/grpc v1.69.0
4141
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.5.1
42-
google.golang.org/protobuf v1.34.2
42+
google.golang.org/protobuf v1.35.2
4343
)
4444

4545
require (
@@ -57,7 +57,7 @@ require (
5757
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
5858
github.com/docker/cli v24.0.0+incompatible // indirect
5959
github.com/docker/distribution v2.8.2+incompatible // indirect
60-
github.com/docker/docker v27.2.0+incompatible // indirect
60+
github.com/docker/docker v27.3.1+incompatible // indirect
6161
github.com/docker/docker-credential-helpers v0.7.0 // indirect
6262
github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c // indirect
6363
github.com/docker/go-units v0.5.0 // indirect
@@ -105,9 +105,9 @@ require (
105105
go.opentelemetry.io/otel/metric v1.28.0 // indirect
106106
go.opentelemetry.io/otel/sdk v1.28.0 // indirect
107107
go.opentelemetry.io/otel/trace v1.28.0 // indirect
108-
golang.org/x/crypto v0.26.0 // indirect
108+
golang.org/x/crypto v0.31.0 // indirect
109109
golang.org/x/mod v0.17.0 // indirect
110-
golang.org/x/net v0.28.0 // indirect
110+
golang.org/x/net v0.33.0 // indirect
111111
golang.org/x/text v0.17.0 // indirect
112112
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
113113
google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect

test/go.mod

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ require (
2323
github.com/sirupsen/logrus v1.9.3
2424
github.com/urfave/cli/v2 v2.27.1
2525
go.opencensus.io v0.24.0
26-
golang.org/x/sync v0.8.0
27-
golang.org/x/sys v0.25.0
28-
google.golang.org/grpc v1.67.0
29-
google.golang.org/protobuf v1.34.2
26+
golang.org/x/sync v0.10.0
27+
golang.org/x/sys v0.28.0
28+
google.golang.org/grpc v1.69.0
29+
google.golang.org/protobuf v1.35.2
3030
k8s.io/cri-api v0.27.1
3131
)
3232

@@ -115,9 +115,9 @@ require (
115115
go.opentelemetry.io/otel/metric v1.28.0 // indirect
116116
go.opentelemetry.io/otel/sdk v1.28.0 // indirect
117117
go.opentelemetry.io/otel/trace v1.28.0 // indirect
118-
golang.org/x/crypto v0.26.0 // indirect
118+
golang.org/x/crypto v0.31.0 // indirect
119119
golang.org/x/mod v0.17.0 // indirect
120-
golang.org/x/net v0.28.0 // indirect
120+
golang.org/x/net v0.33.0 // indirect
121121
golang.org/x/text v0.17.0 // indirect
122122
google.golang.org/genproto v0.0.0-20240401170217-c3f982113cda // indirect
123123
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect

0 commit comments

Comments
 (0)