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-php.git
The following commit(s) were added to refs/heads/master by this push:
new 3c29143 Update Proxy to golang 1.20 (#130)
3c29143 is described below
commit 3c29143fe5e2d270e51d811ab718727cd7402b1e
Author: Luke-Roy-IBM <[email protected]>
AuthorDate: Tue Feb 28 10:36:26 2023 +0100
Update Proxy to golang 1.20 (#130)
---
core/php8.1Action/CHANGELOG.md | 2 ++
core/php8.1Action/Dockerfile | 6 +++---
2 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/core/php8.1Action/CHANGELOG.md b/core/php8.1Action/CHANGELOG.md
index 86530ee..05c874c 100644
--- a/core/php8.1Action/CHANGELOG.md
+++ b/core/php8.1Action/CHANGELOG.md
@@ -21,6 +21,8 @@
PHP 8 as new features and some incompatiblities. See [migration
guide](https://www.php.net/manual/en/migration80.php) for more information.
## Next Release
+- Used openwhisk-runtime-go 1.20.0 to build proxy
+
Initial release
- Added: PHP: 8.1.9
diff --git a/core/php8.1Action/Dockerfile b/core/php8.1Action/Dockerfile
index d06e034..6642cbd 100644
--- a/core/php8.1Action/Dockerfile
+++ b/core/php8.1Action/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 [email protected]
+FROM golang:1.20 AS builder_release
+ARG [email protected]
RUN curl -sL \
https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
| tar xzf -\