X Tutup
Skip to content

Commit 79d800b

Browse files
Update Go to 1.16.4
fix [#45710](golang/go#45710) and CVE-2021-31525. Signed-off-by: Jintao Zhang <zhangjintao9020@gmail.com>
1 parent ab963e1 commit 79d800b

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
strategy:
2222
matrix:
23-
go-version: [1.16.3]
23+
go-version: [1.16.4]
2424
os: [ubuntu-18.04, macos-10.15, windows-2019]
2525

2626
steps:
@@ -73,7 +73,7 @@ jobs:
7373
steps:
7474
- uses: actions/setup-go@v2
7575
with:
76-
go-version: '1.16.3'
76+
go-version: '1.16.4'
7777

7878
- uses: actions/checkout@v2
7979
with:
@@ -106,7 +106,7 @@ jobs:
106106
steps:
107107
- uses: actions/setup-go@v2
108108
with:
109-
go-version: '1.16.3'
109+
go-version: '1.16.4'
110110

111111
- name: Set env
112112
shell: bash
@@ -152,7 +152,7 @@ jobs:
152152
steps:
153153
- uses: actions/setup-go@v2
154154
with:
155-
go-version: '1.16.3'
155+
go-version: '1.16.4'
156156
- name: Set env
157157
shell: bash
158158
run: |
@@ -217,7 +217,7 @@ jobs:
217217
strategy:
218218
matrix:
219219
os: [ubuntu-18.04, macos-10.15, windows-2019]
220-
go-version: ['1.16.3']
220+
go-version: ['1.16.4']
221221
include:
222222
# Go 1.13.x is still used by Docker/Moby
223223
- go-version: '1.13.x'
@@ -263,7 +263,7 @@ jobs:
263263
steps:
264264
- uses: actions/setup-go@v2
265265
with:
266-
go-version: '1.16.3'
266+
go-version: '1.16.4'
267267

268268
- uses: actions/checkout@v2
269269
with:
@@ -344,7 +344,7 @@ jobs:
344344
steps:
345345
- uses: actions/setup-go@v2
346346
with:
347-
go-version: '1.16.3'
347+
go-version: '1.16.4'
348348

349349
- uses: actions/checkout@v2
350350
with:
@@ -496,7 +496,7 @@ jobs:
496496
steps:
497497
- uses: actions/setup-go@v2
498498
with:
499-
go-version: '1.16.3'
499+
go-version: '1.16.4'
500500

501501
- uses: actions/checkout@v2
502502
with:

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- uses: actions/setup-go@v2
2020
with:
21-
go-version: '1.16.3'
21+
go-version: '1.16.4'
2222

2323
- uses: actions/checkout@v2
2424
with:
@@ -135,7 +135,7 @@ jobs:
135135
steps:
136136
- uses: actions/setup-go@v2
137137
with:
138-
go-version: '1.16.3'
138+
go-version: '1.16.4'
139139

140140
- uses: actions/checkout@v2
141141
with:

.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@v2
6464
with:
65-
go-version: '1.16.3'
65+
go-version: '1.16.4'
6666

6767
- name: Set env
6868
shell: bash

.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.16.3'
5+
go_version: '1.16.4'
66
arch: arm64
77
tasks:
88
- name: Build containerd

Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Vagrant.configure("2") do |config|
7777
config.vm.provision "install-golang", type: "shell", run: "once" do |sh|
7878
sh.upload_path = "/tmp/vagrant-install-golang"
7979
sh.env = {
80-
'GO_VERSION': ENV['GO_VERSION'] || "1.16.3",
80+
'GO_VERSION': ENV['GO_VERSION'] || "1.16.4",
8181
}
8282
sh.inline = <<~SHELL
8383
#!/usr/bin/env bash

contrib/Dockerfile.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#
1111
# docker build -t containerd-test --build-arg RUNC_VERSION=v1.0.0-rc93 -f Dockerfile.test ../
1212

13-
ARG GOLANG_VERSION=1.16.3
13+
ARG GOLANG_VERSION=1.16.4
1414

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

0 commit comments

Comments
 (0)
X Tutup