Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump ko version to v0.6.0 #600

Merged
merged 1 commit into from
Oct 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tekton/images/ko-gcloud/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,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@v0.5.1
RUN go get github.com/google/ko/cmd/ko@v0.6.0

# Get Kubectl and Kustomize from the build image
COPY --from=build /usr/local/bin/kubectl /usr/local/bin/kubectl
Expand Down
2 changes: 1 addition & 1 deletion tekton/images/ko/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ FROM golang:1.14-alpine3.12
LABEL maintainer "Tekton Authors <[email protected]>"

ENV GO111MODULE on
RUN go get github.com/google/ko/cmd/ko@v0.5.1
RUN go get github.com/google/ko/cmd/ko@v0.6.0

RUN apk add --no-cache musl-dev gcc git
RUN go get sigs.k8s.io/kustomize/kustomize/[email protected]
2 changes: 1 addition & 1 deletion tekton/images/test-runner/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ RUN apt update && apt install -y uuid-runtime # for uuidgen
RUN apt update && apt install -y rubygems # for mdl

# Extra tools through go get
RUN GO111MODULE="on" go get github.com/google/ko/cmd/ko@v0.5.1 && \
RUN GO111MODULE="on" go get github.com/google/ko/cmd/ko@v0.6.0 && \
GO111MODULE="off" go get github.com/google/licenseclassifier && \
GO111MODULE="off" go get github.com/google/go-licenses && \
GO111MODULE="on" go get github.com/jstemmer/go-junit-report && \
Expand Down