Browse Source

update go_version

Signed-off-by: Rui-Gan <1171530954@qq.com>
Rui-Gan 2 years ago
parent
commit
90caef9cf1

+ 1 - 1
.github/dockerfile/Dockerfile.alpine

@@ -12,7 +12,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-ARG GO_VERSION=${{ matrix.golang }}
+ARG GO_VERSION
 FROM golang:$GO_VERSION-alpine AS builder
 
 RUN apk add gcc make git libc-dev zip curl jq bash binutils-gold pkgconfig zeromq-dev

+ 1 - 1
.github/dockerfile/Dockerfile.centos

@@ -16,7 +16,7 @@ FROM centos:7
 
 RUN yum install -y make wget git which rpm-build gcc
 
-ARG GO_VERSION=${{ matrix.golang }}
+ARG GO_VERSION
 
 RUN case $(arch) in \
         x86_64) \

+ 1 - 1
.github/dockerfile/Dockerfile.debian

@@ -14,7 +14,7 @@
 
 FROM debian:stretch
 
-ARG GO_VERSION=${{ matrix.golang }}
+ARG GO_VERSION
 
 RUN apt update \
     && apt install -y make wget git curl procps zip libucl-dev zlib1g-dev pkg-config libczmq-dev build-essential debhelper jq zip