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

Update/go #259

Merged
merged 2 commits into from
Mar 30, 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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

############# builder #############
FROM golang:1.13.0 AS builder
FROM golang:1.14.1 AS builder

WORKDIR /go/src/github.com/gardener/test-infra
COPY . .
Expand Down
4 changes: 2 additions & 2 deletions charts/bootstrap_tm_prerequisites/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
# limitations under the License.

argo:
tag: v2.6.2
tag: v2.6.3
executor:
tag: v2.6.2
tag: v2.6.3
containerRuntimeExecutor: docker
resources: {}
# requests:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/gardener/test-infra

go 1.13
go 1.14

require (
cloud.google.com/go v0.51.0
Expand Down
40 changes: 10 additions & 30 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion hack/images/base/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.13-alpine3.11
FROM golang:1.14-alpine3.11

ENV HELM_TILLER_VERSION=v2.13.0
ENV KUBECTL_VERSION=v1.14.0
Expand Down
2 changes: 1 addition & 1 deletion hack/images/golang/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.13.0 AS ginkgo
FROM golang:1.14.1 AS ginkgo

RUN \
apt-get update \
Expand Down
Loading