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-swift.git
The following commit(s) were added to refs/heads/master by this push:
new ac3d421 Update to golang:1.15 for build (security). (#121)
ac3d421 is described below
commit ac3d42152b3a9a196fce1bb7c1ce798a5e584ef9
Author: falkzoll <[email protected]>
AuthorDate: Tue Sep 29 02:58:30 2020 +0200
Update to golang:1.15 for build (security). (#121)
Update from golang:1.12 to golang:1.15 for the runtime proxy build to
continue to get security fixes.
---
core/swift42Action/CHANGELOG.md | 3 +++
core/swift42Action/Dockerfile | 4 ++--
core/swift51Action/CHANGELOG.md | 3 +++
core/swift51Action/Dockerfile | 4 ++--
4 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/core/swift42Action/CHANGELOG.md b/core/swift42Action/CHANGELOG.md
index dcd4920..da7363d 100644
--- a/core/swift42Action/CHANGELOG.md
+++ b/core/swift42Action/CHANGELOG.md
@@ -19,6 +19,9 @@
# Apache OpenWhisk Swift 4.2 Runtime Container
+## 1.15.0
+ - Move from golang:1.12 to golang:1.15 to build the runtime proxy.
+
## 1.14.0
- Support for __OW_ACTION_VERSION (openwhisk/4761)
diff --git a/core/swift42Action/Dockerfile b/core/swift42Action/Dockerfile
index 1e2bef1..064a59e 100644
--- a/core/swift42Action/Dockerfile
+++ b/core/swift42Action/Dockerfile
@@ -16,11 +16,11 @@
#
# build go proxy from source
-FROM golang:1.12 AS builder_source
+FROM golang:1.15 AS builder_source
RUN env CGO_ENABLED=0 go get github.com/apache/openwhisk-runtime-go/main && mv
/go/bin/main /bin/proxy
# or build it from a release
-FROM golang:1.12 AS builder_release
+FROM golang:1.15 AS builder_release
ARG [email protected]
RUN curl -sL \
https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
diff --git a/core/swift51Action/CHANGELOG.md b/core/swift51Action/CHANGELOG.md
index 15865dd..0a58825 100644
--- a/core/swift51Action/CHANGELOG.md
+++ b/core/swift51Action/CHANGELOG.md
@@ -19,5 +19,8 @@
# Apache OpenWhisk Swift 5.1 Runtime Container
+## 1.15.0
+ - Move from golang:1.12 to golang:1.15 to build the runtime proxy.
+
## 1.14.0
- Initial Release
diff --git a/core/swift51Action/Dockerfile b/core/swift51Action/Dockerfile
index f5e956b..99f035f 100644
--- a/core/swift51Action/Dockerfile
+++ b/core/swift51Action/Dockerfile
@@ -16,11 +16,11 @@
#
# build go proxy from source
-FROM golang:1.12 AS builder_source
+FROM golang:1.15 AS builder_source
RUN env CGO_ENABLED=0 go get github.com/apache/openwhisk-runtime-go/main && mv
/go/bin/main /bin/proxy
# or build it from a release
-FROM golang:1.12 AS builder_release
+FROM golang:1.15 AS builder_release
ARG [email protected]
RUN curl -sL \
https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\