File tree Expand file tree Collapse file tree 7 files changed +8
-8
lines changed Expand file tree Collapse file tree 7 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 15
15
fail-fast : false
16
16
matrix :
17
17
os : [ "ubuntu" ]
18
- go : [ "1.17.8 " ]
18
+ go : [ "1.17.9 " ]
19
19
test-type : [ "detector", "coverage", "memory" ]
20
20
21
21
runs-on : ${{ matrix.os }}-latest
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ RUN apt-get update -y && apt-get install -y --no-install-recommends \
21
21
22
22
# Install Go.
23
23
# NOTE: Go 1.10+ is required to build c-shared for windows (https://github.com/golang/go/commit/bb0bfd002ada7e3eb9198d4287b32c2fed6e8da6)
24
- ENV GOVERSION=go1.17.8 GOROOT=/usr/local/go GOPATH=/go PATH=$PATH:/usr/local/go/bin:/go/bin CGO_ENABLED=1
24
+ ENV GOVERSION=go1.17.9 GOROOT=/usr/local/go GOPATH=/go PATH=$PATH:/usr/local/go/bin:/go/bin CGO_ENABLED=1
25
25
26
26
RUN curl -L https://storage.googleapis.com/golang/$GOVERSION.linux-amd64.tar.gz -o /tmp/go.tar.gz \
27
27
&& tar -C /usr/local -xzf /tmp/go.tar.gz \
Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ if [ -z ${2+x} ]; then BUILD_TAGS=""; else BUILD_TAGS="$2"; fi
9
9
# Note:
10
10
# clangwrap.sh needs to be updated when the Go version changes.
11
11
# The last version was:
12
- # https://github.com/golang/go/blob/go1.17.8 /misc/ios/clangwrap.sh
12
+ # https://github.com/golang/go/blob/go1.17.9 /misc/ios/clangwrap.sh
13
13
# - with a patch to lower -mios-version-min to 7.0
14
- GO_VERSION_REQUIRED=" 1.17.8 "
14
+ GO_VERSION_REQUIRED=" 1.17.9 "
15
15
16
16
# At this time, we don't support modules
17
17
export GO111MODULE=off
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ RUN apt-get update -y && apt-get install -y --no-install-recommends \
22
22
&& rm -rf /var/lib/apt/lists/*
23
23
24
24
# Install Go.
25
- ENV GOVERSION=go1.17.8 GOROOT=/usr/local/go GOPATH=/go PATH=$PATH:/usr/local/go/bin:/go/bin CGO_ENABLED=1
25
+ ENV GOVERSION=go1.17.9 GOROOT=/usr/local/go GOPATH=/go PATH=$PATH:/usr/local/go/bin:/go/bin CGO_ENABLED=1
26
26
27
27
RUN curl -L https://storage.googleapis.com/golang/$GOVERSION.linux-amd64.tar.gz -o /tmp/go.tar.gz \
28
28
&& tar -C /usr/local -xzf /tmp/go.tar.gz \
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ RUN apt-get update -y && apt-get install -y --no-install-recommends \
19
19
&& rm -rf /var/lib/apt/lists/*
20
20
21
21
# Install Go.
22
- ENV GOVERSION=go1.17.8 GOROOT=/usr/local/go GOPATH=/go PATH=$PATH:/usr/local/go/bin:/go/bin CGO_ENABLED=1
22
+ ENV GOVERSION=go1.17.9 GOROOT=/usr/local/go GOPATH=/go PATH=$PATH:/usr/local/go/bin:/go/bin CGO_ENABLED=1
23
23
24
24
RUN curl -L https://storage.googleapis.com/golang/$GOVERSION.linux-amd64.tar.gz -o /tmp/go.tar.gz \
25
25
&& tar -C /usr/local -xzf /tmp/go.tar.gz \
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ set -e -u -x
5
5
if [ -z ${1+x} ]; then BUILD_TAGS=" " ; else BUILD_TAGS=" $1 " ; fi
6
6
7
7
# Modify this value as we use newer Go versions.
8
- GO_VERSION_REQUIRED=" 1.17.8 "
8
+ GO_VERSION_REQUIRED=" 1.17.9 "
9
9
10
10
# At this time, gomobile doesn't support modules
11
11
export GO111MODULE=off
Original file line number Diff line number Diff line change 1
1
FROM alpine:3.10.2
2
2
3
- ENV GOLANG_VERSION 1.17.8
3
+ ENV GOLANG_VERSION 1.17.9
4
4
ENV GOLANG_SRC_URL https://golang.org/dl/go$GOLANG_VERSION.src.tar.gz
5
5
6
6
RUN set -ex \
You can’t perform that action at this time.
0 commit comments