Skip to content

Commit

Permalink
chore: update vulnerable dependencies (#127)
Browse files Browse the repository at this point in the history
* chore: update vulnerable dependencies

* chore: update containerd to 1.6.6

* chore: update Go to 1.18
  • Loading branch information
rubenruizdegauna authored Aug 5, 2022
1 parent 4b9f755 commit f89f039
Show file tree
Hide file tree
Showing 4 changed files with 263 additions and 32 deletions.
2 changes: 1 addition & 1 deletion DEVELOP_V2.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ the [example](https://github.com/newrelic/nrjmx/blob/master/gojmx/README.md).

Requirements:

- Go (v1.16+)
- Go (v1.18+)
- Java (v1.8+)
- Maven (If running the Java project from IDE is required)
- Docker (for tests and build)
Expand Down
2 changes: 1 addition & 1 deletion build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM maven:3.6-jdk-8

ARG GH_VERSION='2.0.0'
ARG GO_VERSION='1.16.10'
ARG GO_VERSION='1.18.5'

RUN apt-get update && \
apt-get install -y \
Expand Down
47 changes: 43 additions & 4 deletions gojmx/go.mod
Original file line number Diff line number Diff line change
@@ -1,14 +1,53 @@
module github.com/newrelic/nrjmx/gojmx

go 1.16
go 1.18

require (
github.com/apache/thrift v0.16.0
github.com/docker/docker v20.10.11+incompatible
github.com/docker/go-connections v0.4.0
github.com/pkg/errors v0.9.1
github.com/shirou/gopsutil/v3 v3.21.11
github.com/stretchr/testify v1.7.0
github.com/testcontainers/testcontainers-go v0.12.0
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
)

require (
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
github.com/Microsoft/go-winio v0.5.1 // indirect
github.com/Microsoft/hcsshim v0.9.3 // indirect
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
github.com/containerd/cgroups v1.0.3 // indirect
github.com/containerd/containerd v1.6.6 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/docker/distribution v2.8.0+incompatible // indirect
github.com/docker/docker v20.10.11+incompatible // indirect
github.com/docker/go-units v0.4.0 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
github.com/magiconair/properties v1.8.5 // indirect
github.com/moby/sys/mount v0.2.0 // indirect
github.com/moby/sys/mountinfo v0.5.0 // indirect
github.com/moby/term v0.0.0-20201216013528-df9cb8a40635 // indirect
github.com/morikuni/aec v1.0.0 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.0.3-0.20211202183452-c5a74bcca799 // indirect
github.com/opencontainers/runc v1.1.2 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
github.com/sirupsen/logrus v1.8.1 // indirect
github.com/tklauser/go-sysconf v0.3.9 // indirect
github.com/tklauser/numcpus v0.3.0 // indirect
github.com/yusufpapurcu/wmi v1.2.2 // indirect
go.opencensus.io v0.23.0 // indirect
golang.org/x/net v0.0.0-20211216030914-fe4d6282115f // indirect
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect
google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa // indirect
google.golang.org/grpc v1.43.0 // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
Loading

0 comments on commit f89f039

Please sign in to comment.