Skip to content

Commit

Permalink
Revert "Remove unneeded deps in go mod files"
Browse files Browse the repository at this point in the history
This reverts commit 28e1202.
  • Loading branch information
louis-cqrl committed Dec 31, 2024
1 parent 28e1202 commit 8cf9f9b
Show file tree
Hide file tree
Showing 11 changed files with 34 additions and 7 deletions.
4 changes: 4 additions & 0 deletions internal/tools/modparser/testdata/match/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
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: 5 additions & 0 deletions internal/tools/modparser/testdata/nomatch/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
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: 2 additions & 0 deletions internal/tools/modparser/testdata/patchgoversion/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
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: 2 additions & 0 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: 2 additions & 0 deletions pkg/updater/service/helper/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
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: 2 additions & 0 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/net v0.21.0 // indirect
golang.org/x/crypto v0.31.0 // indirect
)
5 changes: 3 additions & 2 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: 7 additions & 3 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: 4 additions & 1 deletion tools/retry_file_dump/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,7 @@ go 1.21

require github.com/golang/protobuf v1.4.3

require google.golang.org/protobuf v1.23.0 // indirect
require (
golang.org/x/crypto v0.31.0 // indirect
google.golang.org/protobuf v1.23.0 // indirect
)
2 changes: 2 additions & 0 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 8cf9f9b

Please sign in to comment.