Skip to content

Commit

Permalink
Remove unneeded deps in go mod files
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-cqrl committed Dec 31, 2024
1 parent 5e80a79 commit 28e1202
Show file tree
Hide file tree
Showing 11 changed files with 7 additions and 34 deletions.
4 changes: 0 additions & 4 deletions internal/tools/modparser/testdata/match/go.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
module github.com/DataDog/datadog-agent/internal/tools/modparser/testdata/match

go 1.18

require (
github.com/DataDog/datadog-agent/pkg/test v0.65.3
)
5 changes: 0 additions & 5 deletions internal/tools/modparser/testdata/nomatch/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
module github.com/DataDog/datadog-agent/internal/tools/modparser/testdata/nomatch

go 1.18

require (
github.com/DataDog/datadog-not-agent/pkg/test v0.65.3
not/github.com/DataDog/datadog-agent/pkg/test v0.65.3
)
2 changes: 0 additions & 2 deletions internal/tools/modparser/testdata/patchgoversion/go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
module github.com/DataDog/datadog-agent/internal/tools/modparser/testdata/patchgoversion

go 1.21.8

require golang.org/x/crypto v0.31.0 // indirect
2 changes: 0 additions & 2 deletions internal/tools/modparser/testdata/patchgoversion/go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions pkg/updater/service/helper/go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
module github.com/DataDog/datadog-agent/pkg/updater/service/helper

go 1.21.7

require golang.org/x/crypto v0.31.0 // indirect
2 changes: 0 additions & 2 deletions pkg/updater/service/helper/go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test/integration/serverless/recorder-extension/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ require (
github.com/gogo/protobuf v1.3.2 // indirect
github.com/philhofer/fwd v1.1.1 // indirect
github.com/tinylib/msgp v1.1.6 // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/net v0.21.0 // indirect
)
5 changes: 2 additions & 3 deletions test/integration/serverless/recorder-extension/go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 3 additions & 7 deletions test/integration/serverless/src/go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions tools/retry_file_dump/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,4 @@ go 1.21

require github.com/golang/protobuf v1.4.3

require (
golang.org/x/crypto v0.31.0 // indirect
google.golang.org/protobuf v1.23.0 // indirect
)
require google.golang.org/protobuf v1.23.0 // indirect
2 changes: 0 additions & 2 deletions tools/retry_file_dump/go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 28e1202

Please sign in to comment.