This is an automated email from the ASF dual-hosted git repository.
mmerli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-client-go.git
The following commit(s) were added to refs/heads/master by this push:
new d634faf Go 1.11 & 1.12 Docker images are not working anymore (#632)
d634faf is described below
commit d634fafdf8a6bc80fb54aa87e89e60eefa82c9c6
Author: Matteo Merli <[email protected]>
AuthorDate: Mon Oct 4 21:54:29 2021 -0700
Go 1.11 & 1.12 Docker images are not working anymore (#632)
---
.github/workflows/go.yml | 2 +-
.github/workflows/project.yml | 2 +-
Dockerfile | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
index c04a463..bc64a50 100644
--- a/.github/workflows/go.yml
+++ b/.github/workflows/go.yml
@@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- go-version: [1.11, 1.12, 1.13, 1.14]
+ go-version: [1.13, 1.14, 1.15, 1.16, 1.17]
steps:
- name: clean docker cache
run: |
diff --git a/.github/workflows/project.yml b/.github/workflows/project.yml
index 4b2ad32..15ecb98 100644
--- a/.github/workflows/project.yml
+++ b/.github/workflows/project.yml
@@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- go-version: [1.11, 1.12, 1.13, 1.14]
+ go-version: [1.13, 1.14, 1.15, 1.16, 1.17]
steps:
- name: Set up Go
uses: actions/setup-go@v1
diff --git a/Dockerfile b/Dockerfile
index 1867959..6a2fb29 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -21,7 +21,7 @@ ARG GO_VERSION=golang:1.12
FROM apachepulsar/pulsar:latest as pulsar
FROM $GO_VERSION as go
-RUN apt-get update && apt-get install -y openjdk-11-jre-headless
+RUN apt-get update && apt-get install -y openjdk-11-jre-headless
ca-certificates
COPY --from=pulsar /pulsar /pulsar