Skip to content

Commit bc00e43

Browse files
authored
Update Go Proxy to latest version based on go 1.20 (#131)
1 parent 3c29143 commit bc00e43

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

core/php7.4Action/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
## Next Release
2121
- Use php:7.4-cli-buster image to always pull latest patch version
22-
- Golang Action loop updatetd to golang 1.18
22+
- Golang Action loop updatetd to golang 1.20
2323
## Apache 1.17.0
2424
- Update version of PHP to 7.4.21
2525
- Build actionloop from 1.16@1.18.0 (#107)

core/php7.4Action/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#
1717

1818
# build go proxy from source
19-
FROM golang:1.18 AS builder_source
19+
FROM golang:1.20 AS builder_source
2020
ARG GO_PROXY_GITHUB_USER=apache
2121
ARG GO_PROXY_GITHUB_BRANCH=master
2222
RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
@@ -25,8 +25,8 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
2525
mv proxy /bin/proxy
2626

2727
# or build it from a release
28-
FROM golang:1.18 AS builder_release
29-
ARG GO_PROXY_RELEASE_VERSION=1.18@1.20.0
28+
FROM golang:1.20 AS builder_release
29+
ARG GO_PROXY_RELEASE_VERSION=1.20@1.22.0
3030
RUN curl -sL \
3131
https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
3232
| tar xzf -\

core/php8.0Action/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
## Next Release
2121
- Use php:8.0-cli-buster image to always pull latest patch version
22-
- Golang Action loop updatetd to golang 1.18
22+
- Golang Action loop updatetd to golang 1.20
2323

2424
## Apache 1.17.0
2525
- Update version of PHP to 8.0.8

core/php8.0Action/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#
1717

1818
# build go proxy from source
19-
FROM golang:1.18 AS builder_source
19+
FROM golang:1.20 AS builder_source
2020
ARG GO_PROXY_GITHUB_USER=apache
2121
ARG GO_PROXY_GITHUB_BRANCH=master
2222
RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
@@ -25,8 +25,8 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
2525
mv proxy /bin/proxy
2626

2727
# or build it from a release
28-
FROM golang:1.18 AS builder_release
29-
ARG GO_PROXY_RELEASE_VERSION=1.18@1.20.0
28+
FROM golang:1.20 AS builder_release
29+
ARG GO_PROXY_RELEASE_VERSION=1.20@1.22.0
3030
RUN curl -sL \
3131
https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
3232
| tar xzf -\

core/php8.1Action/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
PHP 8 as new features and some incompatiblities. See [migration guide](https://www.php.net/manual/en/migration80.php) for more information.
2222

2323
## Next Release
24-
- Used openwhisk-runtime-go 1.20.0 to build proxy
24+
- Used openwhisk-runtime-go 1.22.0 to build proxy
2525

26-
Initial release
26+
## Initial release
2727

2828
- Added: PHP: 8.1.9
2929
- Used openwhisk-runtime-go 1.18.0 to build proxy

core/php8.1Action/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
2626

2727
# or build it from a release
2828
FROM golang:1.20 AS builder_release
29-
ARG GO_PROXY_RELEASE_VERSION=1.20@1.21.0
29+
ARG GO_PROXY_RELEASE_VERSION=1.20@1.22.0
3030
RUN curl -sL \
3131
https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
3232
| tar xzf -\

0 commit comments

Comments
 (0)