-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
94 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ dist: bionic | |
services: | ||
- docker | ||
go: | ||
- 1.18.x | ||
- 1.21.x | ||
env: | ||
global: | ||
- IMAGES_TO_BUILD_PATH=/tmp/images | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,46 @@ | ||
module github.com/adevinta/vulcan-checks-bsys | ||
|
||
go 1.18 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/BurntSushi/toml v1.3.2 | ||
github.com/adevinta/vulcan-check-sdk v1.2.1 | ||
github.com/adevinta/vulcan-report v1.0.0 | ||
github.com/docker/docker v24.0.5+incompatible | ||
github.com/docker/docker v25.0.3+incompatible | ||
github.com/google/go-cmp v0.6.0 | ||
github.com/google/uuid v1.6.0 | ||
github.com/julienschmidt/httprouter v1.3.0 | ||
github.com/manelmontilla/toml v0.3.0 | ||
github.com/opencontainers/image-spec v1.1.0 | ||
golang.org/x/crypto v0.19.0 | ||
golang.org/x/term v0.17.0 | ||
gopkg.in/resty.v1 v1.12.0 | ||
) | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.6.0 // indirect | ||
github.com/docker/distribution v2.8.2+incompatible // indirect | ||
github.com/containerd/log v0.1.0 // indirect | ||
github.com/distribution/reference v0.5.0 // indirect | ||
github.com/docker/go-connections v0.4.0 // indirect | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/felixge/httpsnoop v1.0.4 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect | ||
github.com/morikuni/aec v1.0.0 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/sirupsen/logrus v1.9.0 // indirect | ||
github.com/sirupsen/logrus v1.9.3 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.48.0 // indirect | ||
go.opentelemetry.io/otel v1.23.1 // indirect | ||
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.23.1 // indirect | ||
go.opentelemetry.io/otel/metric v1.23.1 // indirect | ||
go.opentelemetry.io/otel/sdk v1.23.1 // indirect | ||
go.opentelemetry.io/otel/trace v1.23.1 // indirect | ||
golang.org/x/mod v0.10.0 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/net v0.19.0 // indirect | ||
golang.org/x/sys v0.17.0 // indirect | ||
golang.org/x/term v0.17.0 // indirect | ||
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect | ||
golang.org/x/tools v0.8.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
gotest.tools/v3 v3.0.3 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.