Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deps/go.MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ use_repo(
"com_github_acobaugh_osrelease",
"com_github_alecthomas_participle",
"com_github_alecthomas_units",
"com_github_alessio_shellescape",
"com_github_aptly_dev_aptly",
"com_github_aquasecurity_trivy",
"com_github_aquasecurity_trivy_db",
Expand Down Expand Up @@ -402,6 +401,7 @@ use_repo(
"com_gitlab_gitlab_org_api_client_go",
"com_google_cloud_go_compute",
"com_google_cloud_go_compute_metadata",
"dev_essio_al_pkg_shellescape",
"in_gopkg_ini_v1",
"in_gopkg_yaml_v3",
"in_gopkg_zorkian_go_datadog_api_v2",
Expand Down
2 changes: 1 addition & 1 deletion test/e2e-framework/components/command/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ go_library(
"//test/e2e-framework/common/config",
"//test/e2e-framework/common/namer",
"//test/e2e-framework/common/utils",
"@com_github_alessio_shellescape//:shellescape",
"@com_github_pulumi_pulumi_command_sdk//go/command/local",
"@com_github_pulumi_pulumi_command_sdk//go/command/remote",
"@com_github_pulumi_pulumi_sdk_v3//go/pulumi",
"@dev_essio_al_pkg_shellescape//:shellescape",
],
)

Expand Down
2 changes: 1 addition & 1 deletion test/e2e-framework/components/command/unixOSCommand.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (

"github.com/DataDog/datadog-agent/test/e2e-framework/common/utils"

"github.com/alessio/shellescape"
"al.essio.dev/pkg/shellescape"
"github.com/pulumi/pulumi-command/sdk/go/command/remote"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
Expand Down
2 changes: 1 addition & 1 deletion test/e2e-framework/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ module github.com/DataDog/datadog-agent/test/e2e-framework
go 1.26.0

require (
al.essio.dev/pkg/shellescape v1.6.0
cloud.google.com/go/compute v1.64.0
dario.cat/mergo v1.0.2
github.com/DataDog/datadog-agent/pkg/util/option v0.76.0-rc.4
Expand All @@ -11,7 +12,6 @@ require (
github.com/DataDog/datadog-agent/test/fakeintake v0.56.0-rc.3
github.com/DataDog/datadog-api-client-go/v2 v2.60.0
github.com/Masterminds/semver/v3 v3.5.0
github.com/alessio/shellescape v1.4.2
github.com/aws/aws-sdk-go-v2 v1.42.0
github.com/aws/aws-sdk-go-v2/config v1.32.25
github.com/aws/aws-sdk-go-v2/service/ec2 v1.307.0
Expand Down
6 changes: 4 additions & 2 deletions test/e2e-framework/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/new-e2e/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,7 @@ require (
)

require (
al.essio.dev/pkg/shellescape v1.6.0 // indirect
cloud.google.com/go/auth v0.20.0 // indirect
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
cloud.google.com/go/compute v1.64.0 // indirect
Expand Down Expand Up @@ -281,7 +282,6 @@ require (
github.com/DataDog/go-tuf v1.1.1-0.5.2 // indirect
github.com/DataDog/sketches-go v1.4.8 // indirect
github.com/Masterminds/semver/v3 v3.5.0 // indirect
github.com/alessio/shellescape v1.4.2 // indirect
github.com/antithesishq/antithesis-sdk-go v0.7.0 // indirect
github.com/aws/aws-sdk-go v1.55.8 // indirect
github.com/aws/aws-sdk-go-v2/service/ecr v1.58.4 // indirect
Expand Down
6 changes: 4 additions & 2 deletions test/new-e2e/go.sum

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

Loading