-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update build to go 1.12.6 and module deps
Viper could be updated to v1.4.0, but it pulls in a lot of dependencies including prometheus and etcd, and since those features aren't needed, just update to the latest v1.3 version (v1.3.2). Signed-off-by: Blaine Gardner <[email protected]>
- Loading branch information
Showing
3 changed files
with
58 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
language: go | ||
go: | ||
- "1.11" | ||
- "1.12" | ||
|
||
sudo: required | ||
services: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,20 @@ | ||
module github.com/BlaineEXE/octopus | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.1 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/kr/fs v0.1.0 // indirect | ||
github.com/mitchellh/go-homedir v1.0.0 | ||
github.com/pkg/errors v0.8.0 // indirect | ||
github.com/pkg/sftp v1.8.3 | ||
github.com/spf13/cobra v0.0.3 | ||
github.com/spf13/viper v1.3.1 | ||
github.com/stretchr/testify v1.2.2 | ||
golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9 | ||
github.com/kr/pretty v0.1.0 // indirect | ||
github.com/magiconair/properties v1.8.1 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/pelletier/go-toml v1.4.0 // indirect | ||
github.com/pkg/errors v0.8.1 // indirect | ||
github.com/pkg/sftp v1.10.0 | ||
github.com/spf13/afero v1.2.2 // indirect | ||
github.com/spf13/cobra v0.0.5 | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/viper v1.3.2 | ||
github.com/stretchr/testify v1.3.0 | ||
golang.org/x/crypto v0.0.0-20190621222207-cc06ce4a13d4 | ||
golang.org/x/sys v0.0.0-20190626150813-e07cf5db2756 // indirect | ||
golang.org/x/text v0.3.2 // indirect | ||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters