Skip to content

Commit 7da1e13

Browse files
committed
Bump Golang 1.13.10
go1.13.10 (released 2020/04/08) includes fixes to the go command, the runtime, os/exec, and time packages. See the Go 1.13.10 milestone on the issue tracker for details: https://github.com/golang/go/issues?q=milestone%3AGo1.13.10+label%3ACherryPickApproved full diff: golang/go@go1.13.9...go1.13.10 Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 069ce23 commit 7da1e13

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.9
16+
- GO_VERSION: 1.13.10
1717

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

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install Go
2727
uses: actions/setup-go@v1
2828
with:
29-
go-version: '1.13.9'
29+
go-version: '1.13.10'
3030

3131
- name: Set env
3232
shell: bash
@@ -66,7 +66,7 @@ jobs:
6666
- name: Install Go
6767
uses: actions/setup-go@v1
6868
with:
69-
go-version: '1.13.9'
69+
go-version: '1.13.10'
7070

7171
- name: Set env
7272
shell: bash
@@ -138,7 +138,7 @@ jobs:
138138
- name: Set up Go
139139
uses: actions/setup-go@v1
140140
with:
141-
go-version: '1.13.9'
141+
go-version: '1.13.10'
142142

143143
- name: Set env
144144
shell: bash

.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.9'
15+
go-version: '1.13.10'
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.9'
126+
go-version: '1.13.10'
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.9"
13+
- "1.13.10"
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.9
9+
ARG GOLANG_VERSION=1.13.10
1010

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

0 commit comments

Comments
 (0)