Skip to content

Commit 6762742

Browse files
authored
Drop support for golang v1.19 (#197)
1 parent a01ffc1 commit 6762742

15 files changed

Lines changed: 6 additions & 488 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,6 @@ jobs:
9090
SHORT_COMMIT=$(git rev-parse --short "$GITHUB_SHA")
9191
./gradlew :actionloop:distDocker -PdockerRegistry=docker.io -PdockerImagePrefix=openwhisk -PdockerImageTag=nightly
9292
./gradlew :actionloop:distDocker -PdockerRegistry=docker.io -PdockerImagePrefix=openwhisk -PdockerImageTag=$SHORT_COMMIT
93-
./gradlew :golang1.19:distDocker -PdockerRegistry=docker.io -PdockerImagePrefix=openwhisk -PdockerImageTag=nightly
94-
./gradlew :golang1.19:distDocker -PdockerRegistry=docker.io -PdockerImagePrefix=openwhisk -PdockerImageTag=$SHORT_COMMIT
9593
./gradlew :golang1.20:distDocker -PdockerRegistry=docker.io -PdockerImagePrefix=openwhisk -PdockerImageTag=nightly
9694
./gradlew :golang1.20:distDocker -PdockerRegistry=docker.io -PdockerImagePrefix=openwhisk -PdockerImageTag=$SHORT_COMMIT
9795
./gradlew :golang1.21:distDocker -PdockerRegistry=docker.io -PdockerImagePrefix=openwhisk -PdockerImageTag=nightly

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ vendor/
1717
# Go binary proxy
1818
common/proxy
1919
actionloop/proxy
20-
golang1.19/proxy
2120
golang1.20/proxy
2221
golang1.21/proxy
2322
golang1.22/proxy

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
-->
1919
# Latest
2020
- Add support for golang 1.22
21+
- Drop support for golang 1.19
2122

2223
# 1.23.0
2324
- Add support for golang 1.21 (#193)

docs/BUILD.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,9 @@ To build the docker images, after compiling go proxy:
4343

4444
This will build the images:
4545

46-
* `action-golang-v1.19`: an image supporting Go 1.19 sources (does expect an ack)
4746
* `action-golang-v1.20`: an image supporting Go 1.20 sources (does expect an ack)
47+
* `action-golang-v1.21`: an image supporting Go 1.21 sources (does expect an ack)
48+
* `action-golang-v1.22`: an image supporting Go 1.22 sources (does expect an ack)
4849
* `actionloop-base`: the base image, supporting generic executables ans shell script (does not expect an ack)
4950

5051
The `actionloop-base` image can be used for supporting other compiled programming languages as long as they implement a `compile` script and the *action loop* protocol described below. Please check [ENVVARS.md](ENVVARS.md) for configuration options

docs/DEPLOY.md

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

2020
# Deployment options
2121

22-
There are a few images provided: the `actionloop-base` and the `action-golang-v1.19` and `action-golang-v1.20` are available. Each image accepts different input in the deployment.
22+
There are a few images provided: the `actionloop-base` and the `action-golang-v1.<VERSION>` are available. Each image accepts different input in the deployment.
2323

2424
<a name="actionloop">
2525

examples/module-main/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module action
22

3-
go 1.14
3+
go 1.20
44

55
require github.com/rs/zerolog v1.19.0

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/apache/openwhisk-runtime-go
22

3-
go 1.19
3+
go 1.20
44

55
require github.com/stretchr/testify v1.3.0
66

golang1.19/Dockerfile

Lines changed: 0 additions & 57 deletions
This file was deleted.

golang1.19/Makefile

Lines changed: 0 additions & 44 deletions
This file was deleted.

golang1.19/bin/compile

Lines changed: 0 additions & 138 deletions
This file was deleted.

0 commit comments

Comments
 (0)