Skip to content

Commit 06917c9

Browse files
committed
Merge branch 'master' into staging-client
2 parents 2cec1b8 + 79f651b commit 06917c9

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
os: [ "ubuntu" ]
18-
go: [ "1.17.8" ]
18+
go: [ "1.17.9" ]
1919
test-type: [ "detector", "coverage", "memory" ]
2020

2121
runs-on: ${{ matrix.os }}-latest

ClientLibrary/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN apt-get update -y && apt-get install -y --no-install-recommends \
2121

2222
# Install Go.
2323
# 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
2525

2626
RUN curl -L https://storage.googleapis.com/golang/$GOVERSION.linux-amd64.tar.gz -o /tmp/go.tar.gz \
2727
&& tar -C /usr/local -xzf /tmp/go.tar.gz \

ClientLibrary/build-darwin.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ if [ -z ${2+x} ]; then BUILD_TAGS=""; else BUILD_TAGS="$2"; fi
99
# Note:
1010
# clangwrap.sh needs to be updated when the Go version changes.
1111
# 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
1313
# - 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"
1515

1616
# At this time, we don't support modules
1717
export GO111MODULE=off

ConsoleClient/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN apt-get update -y && apt-get install -y --no-install-recommends \
2222
&& rm -rf /var/lib/apt/lists/*
2323

2424
# 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
2626

2727
RUN curl -L https://storage.googleapis.com/golang/$GOVERSION.linux-amd64.tar.gz -o /tmp/go.tar.gz \
2828
&& tar -C /usr/local -xzf /tmp/go.tar.gz \

MobileLibrary/Android/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN apt-get update -y && apt-get install -y --no-install-recommends \
1919
&& rm -rf /var/lib/apt/lists/*
2020

2121
# 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
2323

2424
RUN curl -L https://storage.googleapis.com/golang/$GOVERSION.linux-amd64.tar.gz -o /tmp/go.tar.gz \
2525
&& tar -C /usr/local -xzf /tmp/go.tar.gz \

MobileLibrary/iOS/build-psiphon-framework.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e -u -x
55
if [ -z ${1+x} ]; then BUILD_TAGS=""; else BUILD_TAGS="$1"; fi
66

77
# Modify this value as we use newer Go versions.
8-
GO_VERSION_REQUIRED="1.17.8"
8+
GO_VERSION_REQUIRED="1.17.9"
99

1010
# At this time, gomobile doesn't support modules
1111
export GO111MODULE=off

Server/Dockerfile-binary-builder

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM alpine:3.10.2
22

3-
ENV GOLANG_VERSION 1.17.8
3+
ENV GOLANG_VERSION 1.17.9
44
ENV GOLANG_SRC_URL https://golang.org/dl/go$GOLANG_VERSION.src.tar.gz
55

66
RUN set -ex \

0 commit comments

Comments
 (0)