Skip to content

Commit b0ba068

Browse files
authored
Merge pull request #82 from VertaAI/ln/verta/CVE-2023-2253
fix: [VUL-41] CVE-2023-2253
2 parents 45cc068 + 2e95887 commit b0ba068

File tree

12 files changed

+83
-65
lines changed

12 files changed

+83
-65
lines changed

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require (
1010
github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20230322223720-077b4a917a90
1111
github.com/chrismellard/docker-credential-acr-env v0.0.0-20230304212654-82a0ddb27589
1212
github.com/containerd/cgroups v1.1.0 // indirect
13-
github.com/docker/docker v23.0.3+incompatible
13+
github.com/docker/docker v23.0.6+incompatible
1414
github.com/go-git/go-billy/v5 v5.3.1
1515
github.com/go-git/go-git/v5 v5.4.2
1616
github.com/golang/mock v1.6.0
@@ -85,7 +85,7 @@ require (
8585
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
8686
github.com/dimchansky/utfbom v1.1.1 // indirect
8787
github.com/docker/cli v23.0.1+incompatible // indirect
88-
github.com/docker/distribution v2.8.1+incompatible // indirect
88+
github.com/docker/distribution v2.8.2+incompatible // indirect
8989
github.com/docker/docker-credential-helpers v0.7.0 // indirect
9090
github.com/docker/go-connections v0.4.0 // indirect
9191
github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c // indirect

go.sum

+4-2
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,10 @@ github.com/docker/cli v23.0.1+incompatible h1:LRyWITpGzl2C9e9uGxzisptnxAn1zfZKXy
204204
github.com/docker/cli v23.0.1+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8=
205205
github.com/docker/distribution v2.8.1+incompatible h1:Q50tZOPR6T/hjNsyc9g8/syEs6bk8XXApsHjKukMl68=
206206
github.com/docker/distribution v2.8.1+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
207-
github.com/docker/docker v23.0.3+incompatible h1:9GhVsShNWz1hO//9BNg/dpMnZW25KydO4wtVxWAIbho=
208-
github.com/docker/docker v23.0.3+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
207+
github.com/docker/distribution v2.8.2+incompatible h1:T3de5rq0dB1j30rp0sA2rER+m322EBzniBPB6ZIzuh8=
208+
github.com/docker/distribution v2.8.2+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
209+
github.com/docker/docker v23.0.6+incompatible h1:aBD4np894vatVX99UTx/GyOUOK4uEcROwA3+bQhEcoU=
210+
github.com/docker/docker v23.0.6+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
209211
github.com/docker/docker-credential-helpers v0.7.0 h1:xtCHsjxogADNZcdv1pKUHXryefjlVRqWqIhk/uXJp0A=
210212
github.com/docker/docker-credential-helpers v0.7.0/go.mod h1:rETQfLdHNT3foU5kuNkFR1R1V12OJRRO5lzt2D1b5X0=
211213
github.com/docker/go-connections v0.4.0 h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ=

vendor/github.com/docker/distribution/.dockerignore

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/docker/distribution/.golangci.yml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/docker/distribution/.mailmap

+4-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/docker/distribution/Dockerfile

+44-34
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/docker/distribution/Makefile

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/docker/distribution/docker-bake.hcl

+6-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/docker/distribution/reference/reference.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/docker/docker/client/client.go

+4-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/docker/docker/client/client_deprecated.go

+6-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/modules.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -320,13 +320,13 @@ github.com/docker/cli/cli/config
320320
github.com/docker/cli/cli/config/configfile
321321
github.com/docker/cli/cli/config/credentials
322322
github.com/docker/cli/cli/config/types
323-
# github.com/docker/distribution v2.8.1+incompatible
323+
# github.com/docker/distribution v2.8.2+incompatible
324324
## explicit
325325
github.com/docker/distribution
326326
github.com/docker/distribution/digestset
327327
github.com/docker/distribution/reference
328328
github.com/docker/distribution/registry/client/auth/challenge
329-
# github.com/docker/docker v23.0.3+incompatible
329+
# github.com/docker/docker v23.0.6+incompatible
330330
## explicit
331331
github.com/docker/docker/api
332332
github.com/docker/docker/api/types

0 commit comments

Comments
 (0)