Skip to content

Commit 8cbef0f

Browse files
committed
Update to Go 1.16.2
Signed-off-by: Phil Estes <[email protected]>
1 parent d8208e2 commit 8cbef0f

6 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/ci.yml

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

2121
strategy:
2222
matrix:
23-
go-version: [1.16.1]
23+
go-version: [1.16.2]
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.1'
76+
go-version: '1.16.2'
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.1'
109+
go-version: '1.16.2'
110110

111111
- name: Set env
112112
shell: bash
@@ -139,7 +139,7 @@ jobs:
139139
steps:
140140
- uses: actions/setup-go@v2
141141
with:
142-
go-version: '1.16.1'
142+
go-version: '1.16.2'
143143

144144
- name: Set env
145145
shell: bash
@@ -181,7 +181,7 @@ jobs:
181181
steps:
182182
- uses: actions/setup-go@v2
183183
with:
184-
go-version: '1.16.1'
184+
go-version: '1.16.2'
185185

186186
- uses: actions/checkout@v2
187187
with:
@@ -249,7 +249,7 @@ jobs:
249249
steps:
250250
- uses: actions/setup-go@v2
251251
with:
252-
go-version: '1.16.1'
252+
go-version: '1.16.2'
253253

254254
- uses: actions/checkout@v2
255255
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.1'
21+
go-version: '1.16.2'
2222

2323
- uses: actions/checkout@v2
2424
with:
@@ -131,7 +131,7 @@ jobs:
131131
steps:
132132
- uses: actions/setup-go@v2
133133
with:
134-
go-version: '1.16.1'
134+
go-version: '1.16.2'
135135

136136
- uses: actions/checkout@v2
137137
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.1'
65+
go-version: '1.16.2'
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.1'
5+
go_version: '1.16.2'
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.1",
80+
'GO_VERSION': ENV['GO_VERSION'] || "1.16.2",
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.1
13+
ARG GOLANG_VERSION=1.16.2
1414

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

0 commit comments

Comments
 (0)