You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by dg...@apache.org on 2023/03/06 16:04:29 UTC

[openwhisk-runtime-python] branch master updated: Update 3.9 and 3.10 runtime proxy to 1.20 (#141)

This is an automated email from the ASF dual-hosted git repository.

dgrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-runtime-python.git


The following commit(s) were added to refs/heads/master by this push:
     new 4707653  Update 3.9 and 3.10 runtime proxy to 1.20 (#141)
4707653 is described below

commit 4707653f0e59c1e20f7f9a0aee140a5ca78e6348
Author: Luke-Roy-IBM <83...@users.noreply.github.com>
AuthorDate: Mon Mar 6 17:04:21 2023 +0100

    Update 3.9 and 3.10 runtime proxy to 1.20 (#141)
---
 core/python310Action/Dockerfile | 6 +++---
 core/python39Action/Dockerfile  | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/core/python310Action/Dockerfile b/core/python310Action/Dockerfile
index d34d09b..762ea6d 100644
--- a/core/python310Action/Dockerfile
+++ b/core/python310Action/Dockerfile
@@ -16,7 +16,7 @@
 #
 
 # build go proxy from source
-FROM golang:1.18 AS builder_source
+FROM golang:1.20 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.18 AS builder_release
-ARG GO_PROXY_RELEASE_VERSION=1.18@1.20.0
+FROM golang:1.20 AS builder_release
+ARG GO_PROXY_RELEASE_VERSION=1.20@1.21.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 e09ba3b..b7cb3c0 100644
--- a/core/python39Action/Dockerfile
+++ b/core/python39Action/Dockerfile
@@ -16,7 +16,7 @@
 #
 
 # build go proxy from source
-FROM golang:1.18 AS builder_source
+FROM golang:1.20 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.18 AS builder_release
-ARG GO_PROXY_RELEASE_VERSION=1.18@1.20.0
+FROM golang:1.20 AS builder_release
+ARG GO_PROXY_RELEASE_VERSION=1.20@1.21.0
 RUN curl -sL \
   https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
   | tar xzf -\