-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Enable dependabot on the various packages. * Update Go modules. * Update CI Go versions. Signed-off-by: SuperQ <superq@gmail.com>
- Loading branch information
Showing
9 changed files
with
71 additions
and
50 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "gomod" | ||
directory: "/copyright" | ||
schedule: | ||
interval: "monthly" | ||
- package-ecosystem: "gomod" | ||
directory: "/core" | ||
schedule: | ||
interval: "monthly" | ||
- package-ecosystem: "gomod" | ||
directory: "/extkingpin" | ||
schedule: | ||
interval: "monthly" | ||
- package-ecosystem: "gomod" | ||
directory: "/preformance" | ||
schedule: | ||
interval: "monthly" | ||
|
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,10 +1,22 @@ | ||
module github.com/efficientgo/tools/copyright | ||
|
||
go 1.15 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/efficientgo/tools/core v0.0.0-20210106193344-1108f4e7d16b | ||
github.com/alecthomas/kingpin/v2 v2.3.2 | ||
github.com/efficientgo/tools/core v0.0.0-20221005154214-b82254effbb1 | ||
github.com/openproto/protoconfig/go v0.0.0-20230505123638-5cdd47f3d797 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/protoconfig/protoconfig/go v0.0.0-20210106192113-733758adefac | ||
gopkg.in/alecthomas/kingpin.v2 v2.2.6 | ||
) | ||
|
||
require ( | ||
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/golang/protobuf v1.4.3 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect | ||
go.uber.org/goleak v1.1.10 // indirect | ||
golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect | ||
golang.org/x/tools v0.0.0-20201020161133-226fd2f889ca // indirect | ||
google.golang.org/protobuf v1.25.0 // 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,10 +1,15 @@ | ||
module github.com/efficientgo/tools/core | ||
|
||
go 1.15 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/pmezard/go-difflib v1.0.0 | ||
go.uber.org/goleak v1.1.10 | ||
) | ||
|
||
require ( | ||
golang.org/x/lint v0.0.0-20190930215403-16217165b5de // indirect | ||
golang.org/x/tools v0.0.0-20191108193012-7d206e10da11 // 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,9 +1,18 @@ | ||
module github.com/efficientgo/tools/performance | ||
|
||
go 1.15 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/efficientgo/tools/core v0.0.0-20210731122119-5d4a0645ce9a | ||
github.com/efficientgo/tools/core v0.0.0-20221005154214-b82254effbb1 | ||
github.com/felixge/fgprof v0.9.1 | ||
github.com/pkg/errors v0.9.1 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/google/pprof v0.0.0-20200615235658-03e1cf38a040 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
go.uber.org/goleak v1.1.10 // indirect | ||
golang.org/x/lint v0.0.0-20190930215403-16217165b5de // indirect | ||
golang.org/x/tools v0.0.0-20191108193012-7d206e10da11 // 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