Skip to content

Commit

Permalink
Merge pull request #3431 from vincepri/go11314
Browse files Browse the repository at this point in the history
🌱 Update to Go 1.13.14
  • Loading branch information
k8s-ci-robot authored Jul 30, 2020
2 parents 95fe9e2 + fae9f8b commit a2a78ce
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# limitations under the License.

# Build the manager binary
FROM golang:1.13.12 as builder
FROM golang:1.13.14 as builder
WORKDIR /workspace

# Run this with docker build --build_arg goproxy=$(go env GOPROXY) to override the goproxy
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -477,14 +477,14 @@ release-binary: $(RELEASE_DIR)
-e GOARCH=$(GOARCH) \
-v "$$(pwd):/workspace$(DOCKER_VOL_OPTS)" \
-w /workspace \
golang:1.13.12 \
golang:1.13.14 \
go build -a -ldflags "$(LDFLAGS) -extldflags '-static'" \
-o $(RELEASE_DIR)/$(notdir $(RELEASE_BINARY))-$(GOOS)-$(GOARCH) $(RELEASE_BINARY)

.PHONY: release-staging
release-staging: ## Builds and push container images to the staging bucket.
docker pull docker.io/docker/dockerfile:experimental
docker pull docker.io/library/golang:1.13.12
docker pull docker.io/library/golang:1.13.14
docker pull gcr.io/distroless/static:latest
REGISTRY=$(STAGING_REGISTRY) $(MAKE) docker-build-all docker-push-all release-alias-tag

Expand Down
2 changes: 1 addition & 1 deletion Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def load_provider_tiltfiles():

tilt_helper_dockerfile_header = """
# Tilt image
FROM golang:1.13.12 as tilt-helper
FROM golang:1.13.14 as tilt-helper
# Support live reloading with Tilt
RUN wget --output-document /restart.sh --quiet https://raw.githubusercontent.com/windmilleng/rerun-process-wrapper/master/restart.sh && \
wget --output-document /start.sh --quiet https://raw.githubusercontent.com/windmilleng/rerun-process-wrapper/master/start.sh && \
Expand Down
2 changes: 1 addition & 1 deletion cmd/example-provider/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# limitations under the License.

# Build the manager binary
FROM golang:1.13.12 as builder
FROM golang:1.13.14 as builder

# Run this with docker build --build_arg goproxy=$(go env GOPROXY) to override the goproxy
ARG goproxy=https://proxy.golang.org
Expand Down
2 changes: 1 addition & 1 deletion test/infrastructure/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.13.12 as builder
FROM golang:1.13.14 as builder

# Run this with docker build --build_arg goproxy=$(go env GOPROXY) to override the goproxy
ARG goproxy=https://proxy.golang.org
Expand Down
2 changes: 1 addition & 1 deletion test/infrastructure/docker/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.13.12
FROM golang:1.13.14

# ALERT ################################################################
# This is an unusual dockerfile. The expected build context is all of #
Expand Down
2 changes: 1 addition & 1 deletion test/infrastructure/docker/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ release-manifests: $(RELEASE_DIR) ## Builds the manifests to publish with a rele
.PHONY: release-staging
release-staging: ## Builds and push container images to the staging bucket.
docker pull docker.io/docker/dockerfile:experimental
docker pull docker.io/library/golang:1.13.12
docker pull docker.io/library/golang:1.13.14
docker pull gcr.io/distroless/static:latest
REGISTRY=$(STAGING_REGISTRY) $(MAKE) docker-build-all docker-push-all release-alias-tag

Expand Down

0 comments on commit a2a78ce

Please sign in to comment.