-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for remote registry cache
- Loading branch information
Vladimir Yarotsky
committed
Jun 22, 2022
1 parent
0bea575
commit 4c6815f
Showing
6 changed files
with
885 additions
and
311 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,32 +1,18 @@ | ||
module github.com/concourse/oci-build-task | ||
|
||
go 1.12 | ||
go 1.16 | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.1 | ||
github.com/BurntSushi/toml v0.4.1 | ||
github.com/VividCortex/ewma v1.1.1 // indirect | ||
github.com/concourse/go-archive v1.0.1 | ||
github.com/containerd/stargz-snapshotter/estargz v0.0.0-20210105085455-7f45f7438617 // indirect | ||
github.com/docker/cli v20.10.2+incompatible // indirect | ||
github.com/docker/docker v20.10.2+incompatible // indirect | ||
github.com/fatih/color v1.10.0 | ||
github.com/golang/protobuf v1.4.3 // indirect | ||
github.com/google/go-containerregistry v0.3.0 | ||
github.com/fatih/color v1.13.0 | ||
github.com/google/go-containerregistry v0.10.0 | ||
github.com/julienschmidt/httprouter v1.3.0 | ||
github.com/onsi/gomega v1.10.3 // indirect | ||
github.com/opencontainers/image-spec v1.0.2-0.20190823105129-775207bd45b6 // indirect | ||
github.com/pkg/errors v0.9.1 | ||
github.com/sirupsen/logrus v1.7.0 | ||
github.com/stretchr/testify v1.6.1 | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/stretchr/testify v1.7.0 | ||
github.com/u-root/u-root v7.0.0+incompatible | ||
github.com/vbauerster/mpb v3.4.0+incompatible | ||
github.com/vrischmann/envconfig v1.3.0 | ||
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad // indirect | ||
golang.org/x/net v0.0.0-20201224014010-6772e930b67b // indirect | ||
golang.org/x/sys v0.0.0-20210108172913-0df2131ae363 // indirect | ||
golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf // indirect | ||
google.golang.org/protobuf v1.25.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
gotest.tools/v3 v3.0.3 // indirect | ||
) |
Oops, something went wrong.