Skip to content

Commit 27c1d52

Browse files
authored
Merge pull request #63 from gitpod-io/kylos101/buildkit-dep
Update buildkit to 0.11.2
2 parents d6bec01 + 47f6e20 commit 27c1d52

File tree

7 files changed

+104
-173
lines changed

7 files changed

+104
-173
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
run: pushd pkg/test/runner; ./build.sh; popd
9090
- name: Install the latest buildkit release
9191
run: |
92-
curl -sSL "https://github.com/moby/buildkit/releases/download/v0.10.6/buildkit-v0.10.6.linux-amd64.tar.gz" | sudo tar -xz -C /usr/local
92+
curl -sSL "https://github.com/moby/buildkit/releases/download/v0.11.2/buildkit-v0.11.2.linux-amd64.tar.gz" | sudo tar -xz -C /usr/local
9393
- name: Start buildkit daemon
9494
run: |
9595
sudo --non-interactive --shell <<END_SUDO

.gitpod.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
FROM gitpod/workspace-full
22

33
USER root
4-
ENV TRIGGER_REBUILD=1
4+
ENV TRIGGER_REBUILD=2
55
RUN echo 'deb [trusted=yes] https://repo.goreleaser.com/apt/ /' | sudo tee /etc/apt/sources.list.d/goreleaser.list \
66
&& install-packages goreleaser -y
7-
RUN sudo su -c "cd /usr; curl -L https://github.com/moby/buildkit/releases/download/v0.10.6/buildkit-v0.10.6.linux-amd64.tar.gz | tar xvz"
7+
RUN sudo su -c "cd /usr; curl -L https://github.com/moby/buildkit/releases/download/v0.11.2/buildkit-v0.11.2.linux-amd64.tar.gz | tar xvz"
88
# NOTE: remove when workspace-full includes golangci
99
RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sudo BINDIR=/usr/local/bin sh
1010

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM moby/buildkit:v0.10.6
1+
FROM moby/buildkit:v0.11.2
22
WORKDIR /dazzle
33
COPY dazzle README.md /dazzle/
44
ENV PATH=/dazzle:$PATH

go.mod

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,23 @@ require (
88
github.com/alecthomas/repr v0.1.0
99
github.com/bmatcuk/doublestar v1.3.4
1010
github.com/containerd/console v1.0.3
11-
github.com/containerd/containerd v1.6.8
11+
github.com/containerd/containerd v1.6.16-0.20230124210447-1709cfe273d9
1212
github.com/creack/pty v1.1.18
13-
github.com/docker/cli v20.10.17+incompatible
13+
github.com/docker/cli v23.0.0-rc.3+incompatible
1414
github.com/docker/distribution v2.8.1+incompatible
15-
github.com/google/go-cmp v0.5.8
15+
github.com/google/go-cmp v0.5.9
1616
github.com/gookit/color v1.5.1
1717
github.com/manifoldco/promptui v0.9.0
1818
github.com/mattn/go-isatty v0.0.16
1919
github.com/minio/highwayhash v1.0.2
20-
github.com/moby/buildkit v0.10.6
20+
github.com/moby/buildkit v0.11.2
2121
github.com/opencontainers/go-digest v1.0.0
22-
github.com/opencontainers/image-spec v1.0.3-0.20211202183452-c5a74bcca799
22+
github.com/opencontainers/image-spec v1.0.3-0.20220303224323-02efb9a75ee1
2323
github.com/robertkrimen/otto v0.0.0-20211024170158-b87d35c0b86f
2424
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06
2525
github.com/sirupsen/logrus v1.9.0
2626
github.com/spf13/cobra v1.5.0
27-
golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde
27+
golang.org/x/sync v0.1.0
2828
gopkg.in/yaml.v3 v3.0.1
2929
)
3030

@@ -34,11 +34,11 @@ require (
3434
github.com/containerd/continuity v0.3.0 // indirect
3535
github.com/containerd/typeurl v1.0.2 // indirect
3636
github.com/daaku/go.zipexe v1.0.0 // indirect
37-
github.com/docker/docker v20.10.17+incompatible // indirect
38-
github.com/docker/docker-credential-helpers v0.6.4 // indirect
39-
github.com/go-logr/logr v1.2.2 // indirect
37+
github.com/docker/docker v23.0.0-rc.1+incompatible // indirect
38+
github.com/docker/docker-credential-helpers v0.7.0 // indirect
39+
github.com/go-logr/logr v1.2.3 // indirect
4040
github.com/go-logr/stdr v1.2.2 // indirect
41-
github.com/gofrs/flock v0.7.3 // indirect
41+
github.com/gofrs/flock v0.8.1 // indirect
4242
github.com/gogo/googleapis v1.4.1 // indirect
4343
github.com/gogo/protobuf v1.3.2 // indirect
4444
github.com/golang/protobuf v1.5.2 // indirect
@@ -47,13 +47,15 @@ require (
4747
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
4848
github.com/iancoleman/orderedmap v0.0.0-20190318233801-ac98e3ecb4b0 // indirect
4949
github.com/inconshreveable/mousetrap v1.0.0 // indirect
50-
github.com/klauspost/compress v1.15.7 // indirect
50+
github.com/klauspost/compress v1.15.12 // indirect
51+
github.com/kr/text v0.2.0 // indirect
5152
github.com/moby/locker v1.0.1 // indirect
52-
github.com/moby/sys/signal v0.6.0 // indirect
53+
github.com/moby/patternmatcher v0.5.0 // indirect
54+
github.com/moby/sys/signal v0.7.0 // indirect
5355
github.com/morikuni/aec v1.0.0 // indirect
5456
github.com/pkg/errors v0.9.1 // indirect
5557
github.com/spf13/pflag v1.0.5 // indirect
56-
github.com/tonistiigi/fsutil v0.0.0-20220510150904-0dbf3a8a7d58 // indirect
58+
github.com/tonistiigi/fsutil v0.0.0-20230105215944-fb433841cbfa // indirect
5759
github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea // indirect
5860
github.com/tonistiigi/vt100 v0.0.0-20210615222946-8066bb97264f // indirect
5961
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect
@@ -63,15 +65,13 @@ require (
6365
go.opentelemetry.io/otel/sdk v1.4.1 // indirect
6466
go.opentelemetry.io/otel/trace v1.4.1 // indirect
6567
go.opentelemetry.io/proto/otlp v0.12.0 // indirect
66-
golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd // indirect
67-
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
68-
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab // indirect
69-
golang.org/x/text v0.3.7 // indirect
70-
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect
71-
google.golang.org/genproto v0.0.0-20220310185008-1973136f34c6 // indirect
72-
google.golang.org/grpc v1.47.0 // indirect
73-
google.golang.org/protobuf v1.27.1 // indirect
68+
golang.org/x/crypto v0.2.0 // indirect
69+
golang.org/x/net v0.4.0 // indirect
70+
golang.org/x/sys v0.3.0 // indirect
71+
golang.org/x/text v0.5.0 // indirect
72+
golang.org/x/time v0.1.0 // indirect
73+
google.golang.org/genproto v0.0.0-20220706185917-7780775163c4 // indirect
74+
google.golang.org/grpc v1.50.1 // indirect
75+
google.golang.org/protobuf v1.28.1 // indirect
7476
gopkg.in/sourcemap.v1 v1.0.5 // indirect
7577
)
76-
77-
replace github.com/tonistiigi/fsutil => github.com/jetpack-io/fsutil v0.1.2

0 commit comments

Comments
 (0)