From 69124628e47eb553cdcc9eb487d7819a9184ac55 Mon Sep 17 00:00:00 2001 From: David Grove Date: Fri, 15 Sep 2023 10:59:15 -0400 Subject: [PATCH] update go proxy to 1.21@1.23.0 --- core/python310Action/Dockerfile | 6 +++--- core/python311Action/Dockerfile | 6 +++--- core/python39Action/Dockerfile | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/core/python310Action/Dockerfile b/core/python310Action/Dockerfile index 931dfcf1..ecbc6f55 100644 --- a/core/python310Action/Dockerfile +++ b/core/python310Action/Dockerfile @@ -16,7 +16,7 @@ # # build go proxy from source -FROM golang:1.20 AS builder_source +FROM golang:1.21 AS builder_source ARG GO_PROXY_GITHUB_USER=apache ARG GO_PROXY_GITHUB_BRANCH=master RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \ @@ -25,8 +25,8 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \ mv proxy /bin/proxy # or build it from a release -FROM golang:1.20 AS builder_release -ARG GO_PROXY_RELEASE_VERSION=1.20@1.22.0 +FROM golang:1.21 AS builder_release +ARG GO_PROXY_RELEASE_VERSION=1.21@1.23.0 RUN curl -sL \ https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\ | tar xzf -\ diff --git a/core/python311Action/Dockerfile b/core/python311Action/Dockerfile index 9451b6b1..b7a869a0 100644 --- a/core/python311Action/Dockerfile +++ b/core/python311Action/Dockerfile @@ -16,7 +16,7 @@ # # build go proxy from source -FROM golang:1.20 AS builder_source +FROM golang:1.21 AS builder_source ARG GO_PROXY_GITHUB_USER=apache ARG GO_PROXY_GITHUB_BRANCH=master RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \ @@ -25,8 +25,8 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \ mv proxy /bin/proxy # or build it from a release -FROM golang:1.20 AS builder_release -ARG GO_PROXY_RELEASE_VERSION=1.20@1.22.0 +FROM golang:1.21 AS builder_release +ARG GO_PROXY_RELEASE_VERSION=1.21@1.23.0 RUN curl -sL \ https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\ | tar xzf -\ diff --git a/core/python39Action/Dockerfile b/core/python39Action/Dockerfile index 98b79372..6ab06cb9 100644 --- a/core/python39Action/Dockerfile +++ b/core/python39Action/Dockerfile @@ -16,7 +16,7 @@ # # build go proxy from source -FROM golang:1.20 AS builder_source +FROM golang:1.21 AS builder_source ARG GO_PROXY_GITHUB_USER=apache ARG GO_PROXY_GITHUB_BRANCH=master RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \ @@ -25,8 +25,8 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \ mv proxy /bin/proxy # or build it from a release -FROM golang:1.20 AS builder_release -ARG GO_PROXY_RELEASE_VERSION=1.20@1.22.0 +FROM golang:1.21 AS builder_release +ARG GO_PROXY_RELEASE_VERSION=1.21@1.23.0 RUN curl -sL \ https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\ | tar xzf -\