forked from contiv/ofnet
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump up Go dependencies to their latest versions (#61)
Also enable Dependabot for Go dependencies and Github Actions, to automate future updates. Bump up module version to v0.8.0. Signed-off-by: Antonin Bas <[email protected]>
- Loading branch information
1 parent
c0da85f
commit b62fdc5
Showing
7 changed files
with
83 additions
and
56 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,13 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "gomod" | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" | ||
open-pull-requests-limit: 5 | ||
- package-ecosystem: "github-actions" | ||
# Workflow files stored in the default location of `.github/workflows` | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
open-pull-requests-limit: 5 |
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 +1 @@ | ||
v0.7.3 | ||
v0.8.0 |
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,17 +1,27 @@ | ||
module antrea.io/ofnet | ||
|
||
go 1.15 | ||
go 1.19 | ||
|
||
require ( | ||
antrea.io/libOpenflow v0.11.0 | ||
github.com/Microsoft/go-winio v0.6.1 | ||
github.com/contiv/libovsdb v0.0.0-20170227191248-d0061a53e358 | ||
github.com/orcaman/concurrent-map/v2 v2.0.1 | ||
github.com/sirupsen/logrus v1.9.3 | ||
github.com/stretchr/testify v1.8.4 | ||
) | ||
|
||
require ( | ||
antrea.io/libOpenflow v0.10.3 | ||
github.com/Microsoft/go-winio v0.4.14 | ||
github.com/cenkalti/hub v1.0.1-0.20140529221144-7be60e186e66 // indirect | ||
github.com/cenkalti/rpc2 v0.0.0-20140912135055-44d0d95e4f52 // indirect | ||
github.com/contiv/libovsdb v0.0.0-20170227191248-d0061a53e358 | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/go-logr/logr v1.2.0 // indirect | ||
github.com/kr/pretty v0.2.0 // indirect | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/streamrail/concurrent-map v0.0.0-20160803124810-238fe79560e1 | ||
github.com/stretchr/testify v1.7.0 | ||
golang.org/x/sys v0.0.0-20200113162924-86b910548bc1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
golang.org/x/mod v0.8.0 // indirect | ||
golang.org/x/sys v0.5.0 // indirect | ||
golang.org/x/tools v0.6.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
k8s.io/klog/v2 v2.100.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
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