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:33:59 UTC

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

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


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

commit 84b10abb2d3a6f4089953039bff01ff7b12a0698
Author: Luke-Roy-IBM <83...@users.noreply.github.com>
AuthorDate: Thu Jun 2 23:33:54 2022 +0200

    Update actionloop builder to 1.18 (#119)
---
 core/php7.4Action/CHANGELOG.md | 2 +-
 core/php7.4Action/Dockerfile   | 6 +++---
 core/php8.0Action/CHANGELOG.md | 1 +
 core/php8.0Action/Dockerfile   | 6 +++---
 4 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/core/php7.4Action/CHANGELOG.md b/core/php7.4Action/CHANGELOG.md
index 3308c82..9f006dc 100644
--- a/core/php7.4Action/CHANGELOG.md
+++ b/core/php7.4Action/CHANGELOG.md
@@ -19,7 +19,7 @@
 
 ## Next Release
   - Use php:7.4-cli-buster image to always pull latest patch version
-
+  - Golang Action loop updatetd to golang 1.18
 ## Apache 1.17.0
   - Update version of PHP to 7.4.21
   - Build actionloop from 1.16@1.18.0 (#107)
diff --git a/core/php7.4Action/Dockerfile b/core/php7.4Action/Dockerfile
index 463463d..d0d7806 100644
--- a/core/php7.4Action/Dockerfile
+++ b/core/php7.4Action/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 -\
diff --git a/core/php8.0Action/CHANGELOG.md b/core/php8.0Action/CHANGELOG.md
index 6ac3325..317142f 100644
--- a/core/php8.0Action/CHANGELOG.md
+++ b/core/php8.0Action/CHANGELOG.md
@@ -19,6 +19,7 @@
 
 ## Next Release
   - Use php:8.0-cli-buster image to always pull latest patch version
+  - Golang Action loop updatetd to golang 1.18
 
 ## Apache 1.17.0
   - Update version of PHP to 8.0.8
diff --git a/core/php8.0Action/Dockerfile b/core/php8.0Action/Dockerfile
index 7b3be1a..5480d5f 100644
--- a/core/php8.0Action/Dockerfile
+++ b/core/php8.0Action/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 -\