diff options
author | adrianvillin <avillin@cisco.com> | 2024-01-24 01:45:59 -0500 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2024-01-26 16:59:02 +0000 |
commit | 707210c636095d10df66f4a9d047860b155be782 (patch) | |
tree | 5edb5b693b8d838a86ec41ff9a49867cfd01a1bb /extras/hs-test/go.mod | |
parent | f1acfc00ee6643b7a55af3a1267365a97eec63ca (diff) |
hs-test: updated golang and packages
ioutil.ReadFile is deprecated, replaced with os.ReadFile
Type: test
Change-Id: I9f8075796d05d47ea4dddd7e986026a267a7fe0c
Signed-off-by: adrianvillin <avillin@cisco.com>
Diffstat (limited to 'extras/hs-test/go.mod')
-rw-r--r-- | extras/hs-test/go.mod | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/extras/hs-test/go.mod b/extras/hs-test/go.mod index 8eb4e86ce67..00e1213079d 100644 --- a/extras/hs-test/go.mod +++ b/extras/hs-test/go.mod @@ -1,23 +1,24 @@ module fd.io/hs-test -go 1.18 +go 1.21 require ( - github.com/edwarnicke/exechelper v1.0.2 - github.com/stretchr/testify v1.7.0 - go.fd.io/govpp v0.7.0 + github.com/edwarnicke/exechelper v1.0.3 + github.com/stretchr/testify v1.8.4 + go.fd.io/govpp v0.9.0 gopkg.in/yaml.v3 v3.0.1 ) require ( github.com/davecgh/go-spew v1.1.1 // indirect - github.com/fsnotify/fsnotify v1.4.9 // indirect + github.com/fsnotify/fsnotify v1.7.0 // indirect github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect github.com/kr/text v0.2.0 // indirect - github.com/lunixbochs/struc v0.0.0-20200521075829-a4cb8d33dbbe // indirect + github.com/lunixbochs/struc v0.0.0-20200707160740-784aaebc1d40 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect - github.com/sirupsen/logrus v1.8.1 // indirect - golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6 // indirect + github.com/sirupsen/logrus v1.9.3 // indirect + github.com/vishvananda/netns v0.0.4 // indirect + golang.org/x/sys v0.16.0 // indirect gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect ) |