Skip to content

Commit cb96bb8

Browse files
authored
all: update to Go 1.15
1 parent f2e7add commit cb96bb8

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

.github/workflows/tests-linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
test:
66
strategy:
77
matrix:
8-
go-version: [1.x, 1.13.x]
8+
go-version: [1.x, 1.15.x]
99
platform: [ubuntu-latest]
1010
runs-on: ${{ matrix.platform }}
1111

.github/workflows/tests-windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
test:
66
strategy:
77
matrix:
8-
go-version: [1.13.x]
8+
go-version: [1.15.x]
99
platform: [windows-latest]
1010
runs-on: ${{ matrix.platform }}
1111

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
2222
pkg-config \
2323
libsqlite3-dev
2424

25-
ENV GOLANG_VERSION 1.13.5
25+
ENV GOLANG_VERSION 1.15.3
2626

2727
WORKDIR /usr/local
2828
RUN wget -O go.tgz https://dl.google.com/go/go${GOLANG_VERSION}.linux-amd64.tar.gz
29-
RUN echo "512103d7ad296467814a6e3f635631bd35574cab3369a97a323c9a585ccaa569 go.tgz" | sha256sum -c -
29+
RUN echo "010a88df924a81ec21b293b5da8f9b11c176d27c0ee3962dc1738d2352d3c02d go.tgz" | sha256sum -c -
3030
RUN tar -zxvf go.tgz
3131

3232
ENV GOROOT /usr/local/go

doc/release.txt

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
** How to build the perkeep/go image: **
2+
3+
# TODO(mpl): make the tools build it.
4+
docker build -t perkeep/go ./misc/docker/go
5+
16
** How to build the Perkeep server docker image (for the GCE launcher): **
27

38
$ go run ./misc/docker/dock.go -rev=$GIT_REVISION -upload=true

make.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -898,7 +898,7 @@ func validateDirInGOPATH(dir string) error {
898898
}
899899

900900
const (
901-
goVersionMinor = 13
901+
goVersionMinor = 15
902902
gopherJSGoMinor = 12
903903
)
904904

misc/docker/go/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ RUN apt-get -y --no-install-recommends install ca-certificates libc6-dev
77
RUN apt-get -y --no-install-recommends install git
88

99
# Get Go stable release
10-
ENV GOLANG_VERSION 1.13.5
10+
ENV GOLANG_VERSION 1.15.3
1111
WORKDIR /tmp
1212
RUN curl -O https://storage.googleapis.com/golang/go${GOLANG_VERSION}.linux-amd64.tar.gz
13-
RUN echo '512103d7ad296467814a6e3f635631bd35574cab3369a97a323c9a585ccaa569 go'${GOLANG_VERSION}'.linux-amd64.tar.gz' | sha256sum -c
13+
RUN echo '010a88df924a81ec21b293b5da8f9b11c176d27c0ee3962dc1738d2352d3c02d go'${GOLANG_VERSION}'.linux-amd64.tar.gz' | sha256sum -c
1414
RUN tar -C /usr/local -xzf go${GOLANG_VERSION}.linux-amd64.tar.gz

0 commit comments

Comments
 (0)