Update Go Proxy to latest version based on go 1.20 (#131)

diff --git a/core/php7.4Action/CHANGELOG.md b/core/php7.4Action/CHANGELOG.md
index 9f006dc..feadd11 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
+  - Golang Action loop updatetd to golang 1.20
 ## 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 cda7f07..3786b11 100644
--- a/core/php7.4Action/Dockerfile
+++ b/core/php7.4Action/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 @@
    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.22.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 317142f..2254d9a 100644
--- a/core/php8.0Action/CHANGELOG.md
+++ b/core/php8.0Action/CHANGELOG.md
@@ -19,7 +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
+  - Golang Action loop updatetd to golang 1.20
 
 ## 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 0701067..1977951 100644
--- a/core/php8.0Action/Dockerfile
+++ b/core/php8.0Action/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 @@
    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.22.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.1Action/CHANGELOG.md b/core/php8.1Action/CHANGELOG.md
index 05c874c..bd6edc2 100644
--- a/core/php8.1Action/CHANGELOG.md
+++ b/core/php8.1Action/CHANGELOG.md
@@ -21,9 +21,9 @@
 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
+- Used openwhisk-runtime-go 1.22.0 to build proxy
 
-Initial release
+## Initial release
 
 - Added: PHP: 8.1.9
 - Used openwhisk-runtime-go 1.18.0 to build proxy
diff --git a/core/php8.1Action/Dockerfile b/core/php8.1Action/Dockerfile
index 6642cbd..1da3808 100644
--- a/core/php8.1Action/Dockerfile
+++ b/core/php8.1Action/Dockerfile
@@ -26,7 +26,7 @@
 
 # or build it from a release
 FROM golang:1.20 AS builder_release
-ARG GO_PROXY_RELEASE_VERSION=1.20@1.21.0
+ARG GO_PROXY_RELEASE_VERSION=1.20@1.22.0
 RUN curl -sL \
   https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
   | tar xzf -\