Skip to content

Commit fbe1e14

Browse files
committed
Update Go to 1.16.3
go1.16.3 (released 2021/04/01) includes fixes to the compiler, linker, runtime, the go command, and the testing and time packages. See the Go 1.16.3 milestone on our issue tracker for details: https://github.com/golang/go/issues?q=milestone%3AGo1.16.3+label%3ACherryPickApproved full diff: golang/go@go1.16.2...go1.16.3 Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 93a602a commit fbe1e14

6 files changed

Lines changed: 14 additions & 14 deletions

File tree

.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.2]
23+
go-version: [1.16.3]
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.2'
76+
go-version: '1.16.3'
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.2'
109+
go-version: '1.16.3'
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.2'
155+
go-version: '1.16.3'
156156
- name: Set env
157157
shell: bash
158158
run: |
@@ -221,7 +221,7 @@ jobs:
221221
steps:
222222
- uses: actions/setup-go@v2
223223
with:
224-
go-version: '1.16.2'
224+
go-version: '1.16.3'
225225

226226
- name: Set env
227227
shell: bash
@@ -258,7 +258,7 @@ jobs:
258258
steps:
259259
- uses: actions/setup-go@v2
260260
with:
261-
go-version: '1.16.2'
261+
go-version: '1.16.3'
262262

263263
- uses: actions/checkout@v2
264264
with:
@@ -339,7 +339,7 @@ jobs:
339339
steps:
340340
- uses: actions/setup-go@v2
341341
with:
342-
go-version: '1.16.2'
342+
go-version: '1.16.3'
343343

344344
- uses: actions/checkout@v2
345345
with:
@@ -490,7 +490,7 @@ jobs:
490490
steps:
491491
- uses: actions/setup-go@v2
492492
with:
493-
go-version: '1.16.2'
493+
go-version: '1.16.3'
494494

495495
- uses: actions/checkout@v2
496496
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.2'
21+
go-version: '1.16.3'
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.2'
138+
go-version: '1.16.3'
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.2'
65+
go-version: '1.16.3'
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.2'
5+
go_version: '1.16.3'
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.2",
80+
'GO_VERSION': ENV['GO_VERSION'] || "1.16.3",
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.2
13+
ARG GOLANG_VERSION=1.16.3
1414

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

0 commit comments

Comments
 (0)