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 2022/06/02 21:38:26 UTC

[openwhisk-runtime-ruby] branch master updated: Update actionloop builder to 1.18 (#71)

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


The following commit(s) were added to refs/heads/master by this push:
     new 99a9de6  Update actionloop builder to 1.18 (#71)
99a9de6 is described below

commit 99a9de66e8074bf161e81cbec44023729af1cb94
Author: Luke-Roy-IBM <83...@users.noreply.github.com>
AuthorDate: Thu Jun 2 23:38:20 2022 +0200

    Update actionloop builder to 1.18 (#71)
---
 core/ruby2.6ActionLoop/CHANGELOG.txt | 3 +++
 core/ruby2.6ActionLoop/Dockerfile    | 6 +++---
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/core/ruby2.6ActionLoop/CHANGELOG.txt b/core/ruby2.6ActionLoop/CHANGELOG.txt
index 7c888e5..4aea849 100644
--- a/core/ruby2.6ActionLoop/CHANGELOG.txt
+++ b/core/ruby2.6ActionLoop/CHANGELOG.txt
@@ -19,6 +19,9 @@
 
 # Ruby 2.6 OpenWhisk Runtime Container
 
+## Next Release
+  - Golang Action loop updatetd to golang 1.18
+
 ## 1.17.0
   - Build actionloop from 1.16@1.18.0 (#63)
   - Resolve akka versions explicitly. (#62, #61)
diff --git a/core/ruby2.6ActionLoop/Dockerfile b/core/ruby2.6ActionLoop/Dockerfile
index a481bb3..8daffed 100644
--- a/core/ruby2.6ActionLoop/Dockerfile
+++ b/core/ruby2.6ActionLoop/Dockerfile
@@ -16,7 +16,7 @@
 #
 
 # build go proxy from source
-FROM golang:1.16 AS builder_source
+FROM golang:1.18 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.16 AS builder_release
-ARG GO_PROXY_RELEASE_VERSION=1.16@1.19.0
+FROM golang:1.18 AS builder_release
+ARG GO_PROXY_RELEASE_VERSION=1.18@1.19.0
 RUN curl -sL \
   https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
   | tar xzf -\