-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #111 from Clever/go1.21-update
upgrade to go 1.21
- Loading branch information
Showing
6 changed files
with
65 additions
and
27 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
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,18 +1,27 @@ | ||
module github.com/Clever/sfncli | ||
|
||
go 1.13 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e | ||
github.com/aws/aws-sdk-go v1.23.13 | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/golang/mock v1.6.0 | ||
github.com/stretchr/testify v1.7.0 | ||
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 | ||
gopkg.in/Clever/kayvee-go.v6 v6.24.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect | ||
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect | ||
github.com/xeipuuv/gojsonschema v1.1.1-0.20190423132807-354ad34c2300 // indirect | ||
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 | ||
gopkg.in/Clever/kayvee-go.v6 v6.24.0 | ||
golang.org/x/mod v0.4.2 // indirect | ||
golang.org/x/sys v0.0.0-20210510120138-977fb7262007 // indirect | ||
golang.org/x/tools v0.1.1 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
gopkg.in/yaml.v2 v2.2.3-0.20190319135612-7b8349ac747c // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // 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
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,8 +1,10 @@ | ||
//go:build tools | ||
// +build tools | ||
|
||
// see https://github.com/golang/go/issues/25922 | ||
|
||
package main | ||
|
||
import ( | ||
_ "github.com/golang/mock/gomock" | ||
_ "github.com/golang/mock/mockgen" | ||
) |