Skip to content

Commit aa76d95

Browse files
committed
Bump Golang 1.13.9
go1.13.9 (released 2020/03/19) includes fixes to the go command, tools, the runtime, the toolchain, and the crypto/cypher package. See the Go 1.13.9 milestone on the issue tracker for details: https://github.com/golang/go/issues?q=milestone%3AGo1.13.9+label%3ACherryPickApproved full diff: golang/go@go1.13.8...go1.13.9 Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 1512f0d commit aa76d95

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ environment:
1313
GOPATH: C:\gopath
1414
CGO_ENABLED: 0
1515
matrix:
16-
- GO_VERSION: 1.13.8
16+
- GO_VERSION: 1.13.9
1717

1818
before_build:
1919
- choco install --no-progress -y mingw --version 5.3.0

.github/workflows/checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install Go
2222
uses: actions/setup-go@v1
2323
with:
24-
go-version: '1.13.8'
24+
go-version: '1.13.9'
2525

2626
- name: Set env
2727
shell: bash
@@ -60,7 +60,7 @@ jobs:
6060
- name: Install Go
6161
uses: actions/setup-go@v1
6262
with:
63-
go-version: '1.13.8'
63+
go-version: '1.13.9'
6464

6565
- name: Set env
6666
shell: bash
@@ -131,7 +131,7 @@ jobs:
131131
- name: Set up Go
132132
uses: actions/setup-go@v1
133133
with:
134-
go-version: '1.13.8'
134+
go-version: '1.13.9'
135135

136136
- name: Checkout
137137
uses: actions/checkout@v1

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Set up Go
1313
uses: actions/setup-go@v1
1414
with:
15-
go-version: '1.13.8'
15+
go-version: '1.13.9'
1616

1717
- name: Checkout
1818
uses: actions/checkout@v1
@@ -123,7 +123,7 @@ jobs:
123123
- name: Set up Go
124124
uses: actions/setup-go@v1
125125
with:
126-
go-version: '1.13.8'
126+
go-version: '1.13.9'
127127

128128
- name: Checkout
129129
uses: actions/checkout@v1

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ os:
1010
- linux
1111

1212
go:
13-
- "1.13.8"
13+
- "1.13.9"
1414

1515
env:
1616
- TRAVIS_GOOS=linux TEST_RUNTIME=io.containerd.runc.v1 TRAVIS_CGO_ENABLED=1 TRAVIS_DISTRO=bionic GOPROXY=direct

contrib/Dockerfile.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# 3.) $ make binaries install test
77
#
88

9-
ARG GOLANG_VERSION=1.13.8
9+
ARG GOLANG_VERSION=1.13.9
1010

1111
FROM golang:${GOLANG_VERSION} AS golang-base
1212
RUN mkdir -p /go/src/github.com/containerd/containerd

0 commit comments

Comments
 (0)