Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit bce621a

Browse files
authored
Vulnerability fixes & dep bump (#11)
* Fix for GHSA-c2h3-6mxw-7mvq * Upgrade deps to latest * Remove allow to replace google/ko
1 parent a507f33 commit bce621a

File tree

3 files changed

+45
-22
lines changed

3 files changed

+45
-22
lines changed

.golangci.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,3 @@ issues:
3434
- path: _test\.go
3535
linters:
3636
- wrapcheck
37-
38-
39-
linters-settings:
40-
gomoddirectives:
41-
# List of allowed `replace` directives. Default is empty.
42-
replace-allow-list:
43-
# FIXME: remove after https://github.com/google/ko/issues/476
44-
- github.com/google/ko

go.mod

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ go 1.16
44

55
require (
66
github.com/BurntSushi/toml v0.4.1 // indirect
7+
// Fix for GHSA-c2h3-6mxw-7mvq
8+
github.com/containerd/containerd v1.5.7 // indirect
9+
github.com/containerd/stargz-snapshotter/estargz v0.9.0 // indirect
710
github.com/docker/cli v20.10.9+incompatible // indirect
11+
github.com/docker/docker v20.10.9+incompatible // indirect
812
github.com/docker/docker-credential-helpers v0.6.4 // indirect
913
github.com/fatih/color v1.13.0
1014
github.com/go-logr/logr v1.1.0 // indirect
@@ -17,8 +21,12 @@ require (
1721
github.com/mattn/go-colorable v0.1.11 // indirect
1822
github.com/wavesoftware/go-ensure v1.0.0
1923
golang.org/x/mod v0.5.1
20-
golang.org/x/net v0.0.0-20211008194852-3b03d305991f // indirect
21-
google.golang.org/genproto v0.0.0-20211008145708-270636b82663 // indirect
24+
golang.org/x/net v0.0.0-20211013171255-e13a2654a71e // indirect
25+
golang.org/x/sys v0.0.0-20211013075003-97ac67df715c // indirect
26+
golang.org/x/text v0.3.7 // indirect
27+
golang.org/x/tools v0.1.7 // indirect
28+
google.golang.org/genproto v0.0.0-20211013025323-ce878158c4d4 // indirect
29+
google.golang.org/grpc v1.41.0 // indirect
2230
gotest.tools/v3 v3.0.3
2331
k8s.io/klog/v2 v2.20.0 // indirect
2432
sigs.k8s.io/yaml v1.3.0 // indirect

0 commit comments

Comments
 (0)