-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update go version to 1.22 and update module dependencies (#163)
- Loading branch information
1 parent
f366049
commit bb84088
Showing
4 changed files
with
46 additions
and
48 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
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
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,19 +1,25 @@ | ||
module github.com/apache/openwhisk-client-go | ||
|
||
go 1.15 | ||
go 1.22 | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.1 // indirect | ||
github.com/cloudfoundry/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21 | ||
github.com/fatih/color v1.17.0 | ||
github.com/google/go-querystring v1.1.0 | ||
github.com/hokaccha/go-prettyjson v0.0.0-20211117102719-0474bc63780f | ||
github.com/nicksnyder/go-i18n v1.10.3 | ||
github.com/stretchr/testify v1.9.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | ||
github.com/fatih/color v1.10.0 | ||
github.com/google/go-querystring v1.0.0 | ||
github.com/hokaccha/go-prettyjson v0.0.0-20210113012101-fb4e108d2519 | ||
github.com/nicksnyder/go-i18n v1.10.1 | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/onsi/ginkgo v1.15.0 // indirect | ||
github.com/onsi/gomega v1.10.5 // indirect | ||
github.com/pelletier/go-toml v1.9.5 // indirect | ||
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect | ||
github.com/stretchr/objx v0.3.0 // indirect | ||
github.com/stretchr/testify v1.6.1 | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
golang.org/x/sys v0.26.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // 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