X Tutup
Skip to content

Commit 90930b3

Browse files
authored
Merge pull request containerd#6368 from thaJeztah/1.4_bump_go_1.16.12
[release/1.4] Update Go to 1.16.12
2 parents 405a2f7 + 6f5cc29 commit 90930b3

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install Go
2727
uses: actions/setup-go@v2
2828
with:
29-
go-version: '1.16.11'
29+
go-version: '1.16.12'
3030

3131
- name: Set env
3232
shell: bash
@@ -82,7 +82,7 @@ jobs:
8282
steps:
8383
- uses: actions/setup-go@v2
8484
with:
85-
go-version: '1.16.11'
85+
go-version: '1.16.12'
8686

8787
- name: Set env
8888
shell: bash
@@ -128,7 +128,7 @@ jobs:
128128
steps:
129129
- uses: actions/setup-go@v2
130130
with:
131-
go-version: '1.16.11'
131+
go-version: '1.16.12'
132132

133133
- name: Set env
134134
shell: bash
@@ -166,7 +166,7 @@ jobs:
166166
steps:
167167
- uses: actions/setup-go@v2
168168
with:
169-
go-version: '1.16.11'
169+
go-version: '1.16.12'
170170

171171
- name: Set env
172172
shell: bash
@@ -199,7 +199,7 @@ jobs:
199199
steps:
200200
- uses: actions/setup-go@v2
201201
with:
202-
go-version: '1.16.11'
202+
go-version: '1.16.12'
203203

204204
- name: Set env
205205
shell: bash
@@ -285,7 +285,7 @@ jobs:
285285
steps:
286286
- uses: actions/setup-go@v2
287287
with:
288-
go-version: '1.16.11'
288+
go-version: '1.16.12'
289289

290290
- name: Set env
291291
shell: bash

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/setup-go@v2
1616
with:
17-
go-version: '1.16.11'
17+
go-version: '1.16.12'
1818

1919
- name: Checkout
2020
uses: actions/checkout@v1
@@ -138,7 +138,7 @@ jobs:
138138
steps:
139139
- uses: actions/setup-go@v2
140140
with:
141-
go-version: '1.16.11'
141+
go-version: '1.16.12'
142142

143143
- name: Checkout
144144
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@v2
6464
with:
65-
go-version: '1.16.11'
65+
go-version: '1.16.12'
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.16.11"
18+
- "1.16.12"
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.16.11'
5+
go_version: '1.16.12'
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.11",
80+
'GO_VERSION': ENV['GO_VERSION'] || "1.16.12",
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.11
13+
ARG GOLANG_VERSION=1.16.12
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