Skip to content

Commit 55c9ead

Browse files
committed
Bump Golang 1.13.15
full diff: golang/go@go1.13.14...go1.13.15 go1.13.15 (released 2020/08/06) includes security fixes to the encoding/binary package. See the Go 1.13.15 milestone on the issue tracker for details. https://github.com/golang/go/issues?q=milestone%3AGo1.13.15+label%3ACherryPickApproved Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 3cdc7bf commit 55c9ead

7 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 7 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.14'
29+
go-version: '1.13.15'
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.14'
69+
go-version: '1.13.15'
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.14'
141+
go-version: '1.13.15'
142142

143143
- name: Set env
144144
shell: bash
@@ -185,7 +185,7 @@ jobs:
185185
- name: Install Go
186186
uses: actions/setup-go@v1
187187
with:
188-
go-version: '1.13.14'
188+
go-version: '1.13.15'
189189

190190
- name: Set env
191191
shell: bash
@@ -222,7 +222,7 @@ jobs:
222222
- name: Install Go
223223
uses: actions/setup-go@v1
224224
with:
225-
go-version: '1.13.14'
225+
go-version: '1.13.15'
226226

227227
- name: Set env
228228
shell: bash
@@ -254,7 +254,7 @@ jobs:
254254
- name: Install Go
255255
uses: actions/setup-go@v1
256256
with:
257-
go-version: '1.13.14'
257+
go-version: '1.13.15'
258258

259259
- name: Set env
260260
shell: bash
@@ -325,7 +325,7 @@ jobs:
325325
- name: Install Go
326326
uses: actions/setup-go@v1
327327
with:
328-
go-version: '1.13.14'
328+
go-version: '1.13.15'
329329

330330
- name: Setup gosu
331331
shell: bash

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Go
1616
uses: actions/setup-go@v1
1717
with:
18-
go-version: '1.13.14'
18+
go-version: '1.13.15'
1919

2020
- name: Checkout
2121
uses: actions/checkout@v1
@@ -126,7 +126,7 @@ jobs:
126126
- name: Set up Go
127127
uses: actions/setup-go@v1
128128
with:
129-
go-version: '1.13.14'
129+
go-version: '1.13.15'
130130

131131
- name: Checkout
132132
uses: actions/checkout@v1

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
- name: Install Go
6363
uses: actions/setup-go@v1
6464
with:
65-
go-version: '1.13.14'
65+
go-version: '1.13.15'
6666

6767
- name: Set env
6868
shell: bash

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ os:
1515
- linux
1616

1717
go:
18-
- "1.13.14"
18+
- "1.13.15"
1919

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

.zuul/playbooks/containerd-build/run.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
become: yes
33
roles:
44
- role: config-golang
5-
go_version: '1.13.14'
5+
go_version: '1.13.15'
66
arch: arm64
77
tasks:
88
- name: Build containerd

Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Vagrant.configure("2") do |config|
2929
config.vm.provision "shell", env: {"RUNC_FLAVOR"=>ENV["RUNC_FLAVOR"]}, inline: <<-SHELL
3030
set -eux -o pipefail
3131
# configuration
32-
GO_VERSION="1.13.14"
32+
GO_VERSION="1.13.15"
3333
3434
# install dnf deps
3535
dnf install -y container-selinux gcc git iptables libseccomp-devel lsof make

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.14
9+
ARG GOLANG_VERSION=1.13.15
1010

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

0 commit comments

Comments
 (0)