Skip to content
This repository has been archived by the owner on Feb 24, 2022. It is now read-only.

Commit

Permalink
update CNI library to v1.0.1, Go to v1.17
Browse files Browse the repository at this point in the history
Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
  • Loading branch information
AkihiroSuda committed Sep 27, 2021
1 parent 30b5a60 commit 6ba4942
Show file tree
Hide file tree
Showing 6 changed files with 904 additions and 37 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/setup-go@v2
with:
go-version: 1.15.x
go-version: 1.17.x
- uses: actions/checkout@v2
- name: "Compile binaries"
run: make artifacts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
steps:
- uses: actions/setup-go@v2
with:
go-version: 1.15.x
go-version: 1.17.x
- uses: actions/checkout@v2
with:
fetch-depth: 1
Expand All @@ -40,7 +40,7 @@ jobs:
steps:
- uses: actions/setup-go@v2
with:
go-version: 1.15.x
go-version: 1.17.x
- uses: actions/checkout@v2
with:
fetch-depth: 1
Expand Down
24 changes: 18 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,23 @@
module github.com/AkihiroSuda/cni-isolation

go 1.15
go 1.17

require (
github.com/containernetworking/cni v0.8.0
github.com/containernetworking/plugins v0.9.0
github.com/coreos/go-iptables v0.4.5
github.com/onsi/ginkgo v1.12.1
github.com/onsi/gomega v1.10.3
github.com/containernetworking/cni v1.0.1
github.com/containernetworking/plugins v1.0.1
github.com/coreos/go-iptables v0.6.0
github.com/onsi/ginkgo v1.16.4
github.com/onsi/gomega v1.16.0
)

require (
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/nxadm/tail v1.4.8 // indirect
github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5 // indirect
github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f // indirect
golang.org/x/net v0.0.0-20210428140749-89ef3d95e781 // indirect
golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e // indirect
golang.org/x/text v0.3.6 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
Loading

0 comments on commit 6ba4942

Please sign in to comment.