Skip to content

Commit

Permalink
Update from 1.16 to 1.17 for CVE-2021-29923
Browse files Browse the repository at this point in the history
  • Loading branch information
bjohnso5 authored and pete-woods committed Sep 1, 2021
1 parent a651f78 commit c9eafca
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -8,7 +8,7 @@ orbs:
executors:
go:
docker:
- image: circleci/golang:1.16.7
- image: circleci/golang:1.17
environment:
CGO_ENABLED: 0
mac:
Expand Down
49 changes: 48 additions & 1 deletion go.mod
Expand Up @@ -31,7 +31,54 @@ require (
gotest.tools/v3 v3.0.2
)

require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/emirpasic/gods v1.12.0 // indirect
github.com/fsnotify/fsnotify v1.4.7 // indirect
github.com/go-git/gcfg v1.5.0 // indirect
github.com/go-git/go-billy/v5 v5.0.0 // indirect
github.com/gobuffalo/envy v1.6.11 // indirect
github.com/gobuffalo/events v1.1.8 // indirect
github.com/gobuffalo/genny v0.0.0-20181211165820-e26c8466f14d // indirect
github.com/gobuffalo/logger v0.0.0-20181127160119-5b956e21995c // indirect
github.com/gobuffalo/mapi v1.0.1 // indirect
github.com/gobuffalo/meta v0.0.0-20181127070345-0d7e59dd540b // indirect
github.com/gobuffalo/packd v0.0.0-20181212173646-eca3b8fd6687 // indirect
github.com/gobuffalo/syncx v0.0.0-20181120194010-558ac7de985f // indirect
github.com/golang/protobuf v1.4.2 // indirect
github.com/google/go-cmp v0.4.0 // indirect
github.com/imdario/mergo v0.3.9 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
github.com/joho/godotenv v1.3.0 // indirect
github.com/karrick/godirwalk v1.7.7 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect
github.com/markbates/oncer v0.0.0-20181203154359-bf2de49a0be2 // indirect
github.com/markbates/safe v1.0.1 // indirect
github.com/mattn/go-colorable v0.1.4 // indirect
github.com/mattn/go-runewidth v0.0.7 // indirect
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/nxadm/tail v1.4.4 // indirect
github.com/rogpeppe/go-internal v1.0.0 // indirect
github.com/sergi/go-diff v1.1.0 // indirect
github.com/sirupsen/logrus v1.2.0 // indirect
github.com/xanzy/ssh-agent v0.2.1 // indirect
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
golang.org/x/net v0.0.0-20201202161906-c7110b5ffcbb // indirect
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f // indirect
golang.org/x/text v0.3.3 // indirect
golang.org/x/tools v0.0.0-20190624222133-a101b041ded4 // indirect
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect
google.golang.org/protobuf v1.23.0 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/warnings.v0 v0.1.2 // indirect
gopkg.in/yaml.v2 v2.3.0 // indirect
)

// fix vulnerability: CVE-2020-15114 in etcd v3.3.10+incompatible
replace github.com/coreos/etcd => github.com/coreos/etcd v3.3.24+incompatible

go 1.16
go 1.17

0 comments on commit c9eafca

Please sign in to comment.