From 1c453aad126b270e3d917a24d1fadfd9524b2607 Mon Sep 17 00:00:00 2001 From: Christie Wilson Date: Mon, 4 May 2020 16:26:50 -0400 Subject: [PATCH] =?UTF-8?q?Pin=20verison=20of=20ko=20we=20install=20?= =?UTF-8?q?=F0=9F=93=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We were installing ko from master @ head which means if any bugs are introduced, we'll hit them. A bug was introduced in how -P works which was fixed in https://github.com/google/ko/pull/163 by @mattmoor almost immediately so let's pin to the version with that fix so we can deal with changes to ko at our leisure vs surfacing ko errors in our CI. Fixes #370 --- tekton/images/ko-gcloud/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tekton/images/ko-gcloud/Dockerfile b/tekton/images/ko-gcloud/Dockerfile index d69011584..425a96848 100644 --- a/tekton/images/ko-gcloud/Dockerfile +++ b/tekton/images/ko-gcloud/Dockerfile @@ -22,7 +22,7 @@ ENV PATH="${PATH}:/usr/local/go/bin" # Install ko ENV GOBIN=/usr/local/go/bin ENV GO111MODULE on -RUN go get github.com/google/ko/cmd/ko@master +RUN go get github.com/google/ko/cmd/ko@v0.5.0 # Install Kustomize RUN go get sigs.k8s.io/kustomize/kustomize/v3@v3.5.4