Skip to content

Commit 6ddbd47

Browse files
authored
Merge pull request #6556 from thaJeztah/1.5_bump_go_1.16.14
2 parents f0f80cd + 24b9912 commit 6ddbd47

File tree

8 files changed

+17
-17
lines changed

8 files changed

+17
-17
lines changed

.github/workflows/ci.yml

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

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

2626
steps:
@@ -56,7 +56,7 @@ jobs:
5656
steps:
5757
- uses: actions/setup-go@v2
5858
with:
59-
go-version: '1.16.13'
59+
go-version: '1.16.14'
6060

6161
- shell: bash
6262
run: |
@@ -87,7 +87,7 @@ jobs:
8787
steps:
8888
- uses: actions/setup-go@v2
8989
with:
90-
go-version: '1.16.13'
90+
go-version: '1.16.14'
9191

9292
- uses: actions/checkout@v2
9393
with:
@@ -120,7 +120,7 @@ jobs:
120120
steps:
121121
- uses: actions/setup-go@v2
122122
with:
123-
go-version: '1.16.13'
123+
go-version: '1.16.14'
124124

125125
- name: Set env
126126
shell: bash
@@ -166,7 +166,7 @@ jobs:
166166
steps:
167167
- uses: actions/setup-go@v2
168168
with:
169-
go-version: '1.16.13'
169+
go-version: '1.16.14'
170170
- name: Set env
171171
shell: bash
172172
run: |
@@ -231,7 +231,7 @@ jobs:
231231
strategy:
232232
matrix:
233233
os: [ubuntu-18.04, macos-10.15, windows-2019]
234-
go-version: ['1.16.13']
234+
go-version: ['1.16.14']
235235
include:
236236
# Go 1.13.x is still used by Docker/Moby
237237
- go-version: '1.13.x'
@@ -277,7 +277,7 @@ jobs:
277277
steps:
278278
- uses: actions/setup-go@v2
279279
with:
280-
go-version: '1.16.13'
280+
go-version: '1.16.14'
281281

282282
- uses: actions/checkout@v2
283283
with:
@@ -358,7 +358,7 @@ jobs:
358358
steps:
359359
- uses: actions/setup-go@v2
360360
with:
361-
go-version: '1.16.13'
361+
go-version: '1.16.14'
362362

363363
- uses: actions/checkout@v2
364364
with:
@@ -510,7 +510,7 @@ jobs:
510510
steps:
511511
- uses: actions/setup-go@v2
512512
with:
513-
go-version: '1.16.13'
513+
go-version: '1.16.14'
514514
- uses: actions/checkout@v2
515515
with:
516516
path: src/github.com/containerd/containerd

.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.13'
21+
go-version: '1.16.14'
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.13'
138+
go-version: '1.16.14'
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.13'
65+
go-version: '1.16.14'
6666

6767
- name: Set env
6868
shell: bash

.zuul/playbooks/containerd-build/integration-test.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.13'
5+
go_version: '1.16.14'
66
arch: arm64
77
tasks:
88
- name: Install pre-requisites

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

.zuul/playbooks/containerd-build/unit-test.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.13'
5+
go_version: '1.16.14'
66
arch: arm64
77
tasks:
88
- name: Build and test 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.13",
80+
'GO_VERSION': ENV['GO_VERSION'] || "1.16.14",
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.13
13+
ARG GOLANG_VERSION=1.16.14
1414

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

0 commit comments

Comments
 (0)