diff --git a/swift4.2/CHANGELOG.md b/swift4.2/CHANGELOG.md index 4d9c323..b0993c2 100644 --- a/swift4.2/CHANGELOG.md +++ b/swift4.2/CHANGELOG.md @@ -1,5 +1,14 @@ # IBM Functions Swift 4.2 Runtime +# 1.4.5 +Changes: + - Update Golang Version for the Action Loop Proxy builder + +Swift runtime version: [swift-4.2.4-RELEASE](https://swift.org/builds/swift-4.2.4-release/ubuntu1804/swift-4.2.4-RELEASE/swift-4.2.4-RELEASE-ubuntu18.04.tar.gz) + +Packages included: + - [Watson SDK 1.3.1](https://github.com/watson-developer-cloud/swift-sdk/releases/tag/1.3.1) + # 1.4.4 Changes: - Update GO_PROXY_RELEASE_VERSION to 1.15@1.18.0. diff --git a/swift4.2/Dockerfile b/swift4.2/Dockerfile index 30edce4..6dc7f1c 100755 --- a/swift4.2/Dockerfile +++ b/swift4.2/Dockerfile @@ -4,7 +4,7 @@ FROM openwhisk/action-swift-v4.2:43eef06 AS parent_image # from https://github.com/apache/openwhisk-runtime-swift/blob/master/core/swift42Action/Dockerfile # Build go action-loop proxy from source. -FROM golang:1.15 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} \ @@ -13,7 +13,7 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \ mv proxy /bin/proxy # Build go action-loop proxy from release. -FROM golang:1.15 AS builder_release +FROM golang:1.18 AS builder_release ARG GO_PROXY_RELEASE_VERSION=1.15@1.18.0 RUN curl -sL \ https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\