This repository has been archived by the owner on Mar 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 234
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update go to 1.21, remove vendor dir
Signed-off-by: Appu Goundan <[email protected]>
- Loading branch information
1 parent
8baf41a
commit c2d5548
Showing
1,127 changed files
with
27 additions
and
380,917 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Dockerfile used to build a build step that builds container-diff in CI. | ||
FROM golang:1.14 | ||
FROM golang:1.21 | ||
RUN apt-get update && apt-get install make | ||
WORKDIR /workspace |
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,30 +1,49 @@ | ||
module github.com/GoogleContainerTools/container-diff | ||
|
||
go 1.15 | ||
go 1.21 | ||
|
||
replace golang.org/x/sys => golang.org/x/sys v0.0.0-20190830141801-acfa387b8d69 | ||
|
||
require ( | ||
code.cloudfoundry.org/bytefmt v0.0.0-20180906201452-2aa6f33b730c | ||
github.com/docker/distribution v0.0.0-20200319173657-742aab907b54 // indirect | ||
github.com/docker/docker v1.4.2-0.20190219180918-740349757396 | ||
github.com/fsouza/go-dockerclient v1.3.6 | ||
github.com/gogo/protobuf v1.2.1 // indirect | ||
github.com/google/go-containerregistry v0.0.0-20190214194807-bada66e31e55 | ||
github.com/google/go-github v17.0.0+incompatible | ||
github.com/google/go-querystring v1.0.0 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/morikuni/aec v1.0.0 // indirect | ||
github.com/nightlyone/lockfile v0.0.0-20180618180623-0ad87eef1443 | ||
github.com/onsi/ginkgo v1.12.0 // indirect | ||
github.com/onsi/gomega v1.9.0 // indirect | ||
github.com/pkg/errors v0.8.1 | ||
github.com/pkg/profile v1.2.1 | ||
github.com/pmezard/go-difflib v1.0.0 | ||
github.com/sirupsen/logrus v1.4.2 | ||
github.com/spf13/cobra v0.0.3 | ||
github.com/spf13/pflag v1.0.3 | ||
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 | ||
) | ||
|
||
require ( | ||
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect | ||
github.com/Microsoft/go-winio v0.4.11 // indirect | ||
github.com/containerd/continuity v0.0.0-20181203112020-004b46473808 // indirect | ||
github.com/docker/distribution v0.0.0-20200319173657-742aab907b54 // indirect | ||
github.com/docker/go-connections v0.4.0 // indirect | ||
github.com/docker/go-units v0.3.3 // indirect | ||
github.com/gogo/protobuf v1.2.1 // indirect | ||
github.com/golang/protobuf v1.3.3 // indirect | ||
github.com/google/go-querystring v1.0.0 // indirect | ||
github.com/ijc/Gotty v0.0.0-20170406111628-a8b993ba6abd // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect | ||
github.com/morikuni/aec v1.0.0 // indirect | ||
github.com/onsi/ginkgo v1.12.0 // indirect | ||
github.com/onsi/gomega v1.9.0 // indirect | ||
github.com/opencontainers/go-digest v1.0.0-rc1 // indirect | ||
github.com/opencontainers/image-spec v1.0.1 // indirect | ||
github.com/opencontainers/runc v0.1.1 // indirect | ||
golang.org/x/net v0.0.0-20190619014844-b5b0513f8c1b // indirect | ||
golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect | ||
golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e // indirect | ||
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect | ||
google.golang.org/appengine v1.4.0 // indirect | ||
google.golang.org/grpc v1.28.1 // 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.