You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by mh...@apache.org on 2023/02/28 09:35:52 UTC

[openwhisk-runtime-java] branch master updated: Update Proxy to golang 1.20 (#150)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 9aa1fdb  Update Proxy to golang 1.20 (#150)
9aa1fdb is described below

commit 9aa1fdbd55459ab6659205b9b102c7221e9545b0
Author: Luke-Roy-IBM <83...@users.noreply.github.com>
AuthorDate: Tue Feb 28 10:35:47 2023 +0100

    Update Proxy to golang 1.20 (#150)
---
 core/java8actionloop/CHANGELOG.md | 2 +-
 core/java8actionloop/Dockerfile   | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/core/java8actionloop/CHANGELOG.md b/core/java8actionloop/CHANGELOG.md
index e5c6489..d3b1a33 100644
--- a/core/java8actionloop/CHANGELOG.md
+++ b/core/java8actionloop/CHANGELOG.md
@@ -21,7 +21,7 @@
 # next release
  - use `ibm-semeru-runtimes:open-8u352-b08-jdk-focal` as baseimage
  - update gson version to 2.9.0
-
+ - update Proxy to 1.20 and release 1.21.0
 # 1.19.0
  - Use adoptopenjdk/openjdk8-openj9:x86_64-ubuntu-jdk8u332-b09_openj9-0.32.0
 
diff --git a/core/java8actionloop/Dockerfile b/core/java8actionloop/Dockerfile
index 68d7b8c..9eeddf5 100644
--- a/core/java8actionloop/Dockerfile
+++ b/core/java8actionloop/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 -\