Skip to content

Commit

Permalink
Merge pull request #306 from DopplerHQ/upgrade-deps
Browse files Browse the repository at this point in the history
chore: upgrade golang dependencies
  • Loading branch information
Piccirello authored Apr 29, 2022
2 parents dd540e0 + f06774b commit 16c3fdd
Show file tree
Hide file tree
Showing 5 changed files with 125 additions and 341 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: '1.16'
go-version: '1.18'
- name: Checkout
uses: actions/checkout@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: '1.16'
go-version: '1.18'
- name: Checkout
uses: actions/checkout@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: '1.16'
go-version: '1.18'
- name: Checkout
uses: actions/checkout@v1
with:
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: '1.16'
go-version: '1.18'
- name: Checkout
uses: actions/checkout@v1
with:
Expand Down
49 changes: 32 additions & 17 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,27 +1,42 @@
module github.com/DopplerHQ/cli

go 1.16
go 1.18

require (
github.com/AlecAivazis/survey/v2 v2.2.13
github.com/AlecAivazis/survey/v2 v2.3.4
github.com/atotto/clipboard v0.1.4
github.com/go-openapi/strfmt v0.19.3 // indirect
github.com/godbus/dbus/v5 v5.0.4 // indirect
github.com/google/uuid v1.2.0
github.com/hashicorp/go-version v1.3.0
github.com/google/uuid v1.3.0
github.com/hashicorp/go-version v1.4.0
github.com/jedib0t/go-pretty v4.3.0+incompatible
github.com/mattn/go-colorable v0.1.8 // indirect
github.com/mattn/go-isatty v0.0.13
github.com/mattn/go-runewidth v0.0.5 // indirect
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
github.com/mattn/go-isatty v0.0.14
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
github.com/spf13/cobra v1.1.3
github.com/zalando/go-keyring v0.1.2-0.20211025122247-5267aaad6970
go.mongodb.org/mongo-driver v1.1.2 // indirect
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e
golang.org/x/sys v0.0.0-20210616094352-59db8d763f22 // indirect
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b // indirect
golang.org/x/text v0.3.6 // indirect
github.com/spf13/cobra v1.4.0
github.com/zalando/go-keyring v0.2.1
golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f
gopkg.in/gookit/color.v1 v1.1.6
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
)

require (
github.com/alessio/shellescape v1.4.1 // indirect
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect
github.com/danieljoos/wincred v1.1.2 // indirect
github.com/go-openapi/errors v0.20.2 // indirect
github.com/go-openapi/strfmt v0.21.2 // indirect
github.com/go-stack/stack v1.8.1 // indirect
github.com/godbus/dbus/v5 v5.1.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/oklog/ulid v1.3.1 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/objx v0.2.0 // indirect
go.mongodb.org/mongo-driver v1.9.0 // indirect
golang.org/x/sys v0.0.0-20220422013727-9388b58f7150 // indirect
golang.org/x/term v0.0.0-20220411215600-e5f449aeb171 // indirect
golang.org/x/text v0.3.7 // indirect
)
Loading

0 comments on commit 16c3fdd

Please sign in to comment.