Skip to content

Commit ac35737

Browse files
authored
Bump dependencies (#110)
1 parent c907f36 commit ac35737

File tree

3 files changed

+436
-45
lines changed

3 files changed

+436
-45
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Get latest CA certs & git
2-
FROM alpine:3.14.2 as deps
2+
FROM alpine:3.15.0 as deps
33

44
# hadolint ignore=DL3018
55
RUN apk --no-cache add ca-certificates git

go.mod

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,22 @@ module github.com/mszostok/codeowners-validator
33
go 1.17
44

55
require (
6-
github.com/fatih/color v1.12.0
6+
github.com/fatih/color v1.13.0
77
github.com/google/go-github/v29 v29.0.3
88
github.com/hashicorp/go-multierror v1.1.1
9-
github.com/kr/text v0.2.0 // indirect
109
github.com/mattn/go-zglob v0.0.4-0.20201017022353-70beb5203ba6
11-
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
1210
github.com/pkg/errors v0.9.1
13-
github.com/sebdah/goldie/v2 v2.3.0
11+
github.com/sebdah/goldie/v2 v2.5.3
1412
github.com/sergi/go-diff v1.1.0 // indirect
1513
github.com/sirupsen/logrus v1.8.1
16-
github.com/spf13/afero v1.6.0
14+
github.com/spf13/afero v1.8.0
1715
github.com/spf13/pflag v1.0.5
1816
github.com/stretchr/testify v1.7.0
19-
github.com/vrischmann/envconfig v1.2.0
20-
golang.org/x/crypto v0.0.0-20200320181102-891825fb96df // indirect
21-
golang.org/x/net v0.0.0-20200320220750-118fecf932d8 // indirect
22-
golang.org/x/oauth2 v0.0.0-20190319182350-c85d3e98c914
23-
golang.org/x/sys v0.0.0-20200321134203-328b4cd54aae // indirect
24-
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
17+
github.com/vrischmann/envconfig v1.3.0
18+
golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa // indirect
19+
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 // indirect
20+
golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99
21+
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
2522
gopkg.in/pipe.v2 v2.0.0-20140414041502-3c2ca4d52544
2623
gopkg.in/src-d/go-git.v4 v4.13.1
2724
gotest.tools v2.2.0+incompatible
@@ -30,21 +27,22 @@ require (
3027
require (
3128
github.com/davecgh/go-spew v1.1.1 // indirect
3229
github.com/emirpasic/gods v1.12.0 // indirect
33-
github.com/golang/protobuf v1.3.2 // indirect
34-
github.com/google/go-cmp v0.3.0 // indirect
30+
github.com/golang/protobuf v1.4.3 // indirect
31+
github.com/google/go-cmp v0.5.4 // indirect
3532
github.com/google/go-querystring v1.0.0 // indirect
3633
github.com/hashicorp/errwrap v1.0.0 // indirect
3734
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
3835
github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd // indirect
39-
github.com/mattn/go-colorable v0.1.8 // indirect
40-
github.com/mattn/go-isatty v0.0.12 // indirect
36+
github.com/mattn/go-colorable v0.1.9 // indirect
37+
github.com/mattn/go-isatty v0.0.14 // indirect
4138
github.com/mitchellh/go-homedir v1.1.0 // indirect
4239
github.com/pmezard/go-difflib v1.0.0 // indirect
4340
github.com/src-d/gcfg v1.4.0 // indirect
4441
github.com/xanzy/ssh-agent v0.2.1 // indirect
45-
golang.org/x/text v0.3.3 // indirect
46-
google.golang.org/appengine v1.4.0 // indirect
42+
golang.org/x/text v0.3.4 // indirect
43+
google.golang.org/appengine v1.6.7 // indirect
44+
google.golang.org/protobuf v1.25.0 // indirect
4745
gopkg.in/src-d/go-billy.v4 v4.3.2 // indirect
4846
gopkg.in/warnings.v0 v0.1.2 // indirect
49-
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
47+
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect
5048
)

0 commit comments

Comments
 (0)