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/02 02:30:13 UTC

[openwhisk-runtime-rust] branch master updated: update proxy to use go 1.20 and actionloop 1.21.0 (#45)

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-rust.git


The following commit(s) were added to refs/heads/master by this push:
     new 8b46c9d  update proxy to use go 1.20 and actionloop 1.21.0 (#45)
8b46c9d is described below

commit 8b46c9d8494403cfb338139c16554c332a4d473a
Author: David Grove <dg...@users.noreply.github.com>
AuthorDate: Wed Mar 1 20:30:06 2023 -0600

    update proxy to use go 1.20 and actionloop 1.21.0 (#45)
---
 core/rust1.34/Dockerfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/core/rust1.34/Dockerfile b/core/rust1.34/Dockerfile
index d099341..9ab8e57 100644
--- a/core/rust1.34/Dockerfile
+++ b/core/rust1.34/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 -\