Skip to content

Commit e72046f

Browse files
committed
Update Go to 1.16.6
Release notes: https://golang.org/doc/devel/release#go1.16 Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
1 parent cbdebd1 commit e72046f

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
strategy:
2424
matrix:
25-
go-version: [1.16.4]
25+
go-version: [1.16.6]
2626
os: [ubuntu-18.04, macos-10.15, windows-2019]
2727

2828
steps:
@@ -53,7 +53,7 @@ jobs:
5353
steps:
5454
- uses: actions/setup-go@v2
5555
with:
56-
go-version: '1.16.4'
56+
go-version: '1.16.6'
5757

5858
- shell: bash
5959
run: |
@@ -84,7 +84,7 @@ jobs:
8484
steps:
8585
- uses: actions/setup-go@v2
8686
with:
87-
go-version: '1.16.4'
87+
go-version: '1.16.6'
8888

8989
- uses: actions/checkout@v2
9090
with:
@@ -117,7 +117,7 @@ jobs:
117117
steps:
118118
- uses: actions/setup-go@v2
119119
with:
120-
go-version: '1.16.4'
120+
go-version: '1.16.6'
121121

122122
- name: Set env
123123
shell: bash
@@ -163,7 +163,7 @@ jobs:
163163
steps:
164164
- uses: actions/setup-go@v2
165165
with:
166-
go-version: '1.16.4'
166+
go-version: '1.16.6'
167167
- name: Set env
168168
shell: bash
169169
run: |
@@ -228,7 +228,7 @@ jobs:
228228
strategy:
229229
matrix:
230230
os: [ubuntu-18.04, macos-10.15, windows-2019]
231-
go-version: ['1.16.4']
231+
go-version: ['1.16.6']
232232
include:
233233
# Go 1.13.x is still used by Docker/Moby
234234
- go-version: '1.13.x'
@@ -274,7 +274,7 @@ jobs:
274274
steps:
275275
- uses: actions/setup-go@v2
276276
with:
277-
go-version: '1.16.4'
277+
go-version: '1.16.6'
278278

279279
- uses: actions/checkout@v2
280280
with:
@@ -355,7 +355,7 @@ jobs:
355355
steps:
356356
- uses: actions/setup-go@v2
357357
with:
358-
go-version: '1.16.4'
358+
go-version: '1.16.6'
359359

360360
- uses: actions/checkout@v2
361361
with:
@@ -498,7 +498,7 @@ jobs:
498498
steps:
499499
- uses: actions/setup-go@v2
500500
with:
501-
go-version: '1.16.4'
501+
go-version: '1.16.6'
502502

503503
- uses: actions/checkout@v2
504504
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.4'
21+
go-version: '1.16.6'
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.4'
138+
go-version: '1.16.6'
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.4'
65+
go-version: '1.16.6'
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.4'
5+
go_version: '1.16.6'
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.4",
80+
'GO_VERSION': ENV['GO_VERSION'] || "1.16.6",
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-rc94 -f Dockerfile.test ../
1212

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

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

script/setup/prepare_env_windows.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Prepare windows environment for building and running containerd tests
22

3-
$PACKAGES= @{ mingw = ""; git = ""; golang = "1.16.4"; make = "" }
3+
$PACKAGES= @{ mingw = ""; git = ""; golang = "1.16.6"; make = "" }
44

55
write-host "Downloading chocolatey package"
66
curl.exe -L "https://packages.chocolatey.org/chocolatey.0.10.15.nupkg" -o 'c:\choco.zip'

0 commit comments

Comments
 (0)