Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump github.com/spf13/viper from 1.6.2 to 1.7.0 #34

Merged
merged 3 commits into from
May 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
build:
docker:
- image: circleci/golang:1.11
- image: circleci/golang:1.14
working_directory: /go/src/github.com/antham/ghokin
steps:
- checkout
Expand All @@ -12,14 +12,15 @@ jobs:
- run:
name: Install dependencies
command: |
export GO111MODULE=on
wget -O doc-hunt https://github.com/antham/doc-hunt/releases/download/v2.1.1/doc-hunt_linux_amd64 && \
sudo mv doc-hunt /usr/local/bin && \
sudo chmod 777 /usr/local/bin/doc-hunt
wget -O gommit https://github.com/antham/gommit/releases/download/v2.1.1/gommit_linux_386 && \
sudo mv gommit /usr/local/bin && \
sudo chmod 777 /usr/local/bin/gommit
go get -u github.com/mitchellh/gox
go get -u github.com/golangci/golangci-lint/cmd/golangci-lint
go get github.com/mitchellh/gox@v1.0.1
go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.27.0
- run:
name: Install vendors
command: |
Expand Down Expand Up @@ -51,7 +52,7 @@ jobs:

publish:
docker:
- image: circleci/golang:1.11
- image: circleci/golang:1.14
working_directory: /go/src/github.com/antham/ghokin
steps:
- checkout
Expand All @@ -62,9 +63,10 @@ jobs:
- run:
name: Install dependencies
command: |
export GO111MODULE=on
mkdir /home/circleci/bin
go get -u github.com/mitchellh/gox
go get -u github.com/tcnksm/ghr
go get github.com/mitchellh/gox@v1.0.1
go get github.com/tcnksm/ghr@v0.13.0
wget -O ~/bin/chyle https://github.com/antham/chyle/releases/download/v1.2.0/chyle_linux_amd64
chmod 777 ~/bin/chyle
- run:
Expand Down
17 changes: 14 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,13 +1,24 @@
module github.com/antham/ghokin

require (
github.com/cucumber/cucumber-messages-go v0.0.0-20180726152503-9cc16e7821a4 // indirect
github.com/cucumber/cucumber-messages-go v1.1.2 // indirect
github.com/cucumber/gherkin-go v0.0.0-20180702115136-c016180aa7b9
github.com/fatih/color v1.9.0
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/gogo/protobuf v1.3.1 // indirect
github.com/mattn/go-colorable v0.1.6 // indirect
github.com/mitchellh/go-homedir v1.1.0
github.com/spf13/cobra v0.0.7
github.com/spf13/viper v1.6.2
github.com/mitchellh/mapstructure v1.3.0 // indirect
github.com/pelletier/go-toml v1.8.0 // indirect
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/cobra v1.0.0
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.7.0
github.com/stretchr/testify v1.5.1
golang.org/x/sys v0.0.0-20200519105757-fe76b779f299 // indirect
gopkg.in/ini.v1 v1.56.0 // indirect
)

go 1.13
Loading