Skip to content

Commit 33d90b7

Browse files
authored
Merge pull request #5010 from thaJeztah/1.4_update_golang
2 parents 02df14f + 232cee4 commit 33d90b7

7 files changed

Lines changed: 13 additions & 13 deletions

File tree

.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@v1
2828
with:
29-
go-version: '1.15.5'
29+
go-version: '1.15.8'
3030

3131
- name: Set env
3232
shell: bash
@@ -81,7 +81,7 @@ jobs:
8181
- name: Set up Go
8282
uses: actions/setup-go@v1
8383
with:
84-
go-version: '1.15.5'
84+
go-version: '1.15.8'
8585

8686
- name: Set env
8787
shell: bash
@@ -128,7 +128,7 @@ jobs:
128128
- name: Install Go
129129
uses: actions/setup-go@v1
130130
with:
131-
go-version: '1.15.5'
131+
go-version: '1.15.8'
132132

133133
- name: Set env
134134
shell: bash
@@ -165,7 +165,7 @@ jobs:
165165
- name: Install Go
166166
uses: actions/setup-go@v1
167167
with:
168-
go-version: '1.15.5'
168+
go-version: '1.15.8'
169169

170170
- name: Set env
171171
shell: bash
@@ -197,7 +197,7 @@ jobs:
197197
- name: Install Go
198198
uses: actions/setup-go@v1
199199
with:
200-
go-version: '1.15.5'
200+
go-version: '1.15.8'
201201

202202
- name: Set env
203203
shell: bash
@@ -277,7 +277,7 @@ jobs:
277277
- name: Install Go
278278
uses: actions/setup-go@v1
279279
with:
280-
go-version: '1.15.5'
280+
go-version: '1.15.8'
281281

282282
- name: Set env
283283
shell: bash

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Go
1616
uses: actions/setup-go@v1
1717
with:
18-
go-version: '1.15.5'
18+
go-version: '1.15.8'
1919

2020
- name: Checkout
2121
uses: actions/checkout@v1
@@ -132,7 +132,7 @@ jobs:
132132
- name: Set up Go
133133
uses: actions/setup-go@v1
134134
with:
135-
go-version: '1.15.5'
135+
go-version: '1.15.8'
136136

137137
- name: Checkout
138138
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@v1
6464
with:
65-
go-version: '1.15.5'
65+
go-version: '1.15.8'
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.15.5"
18+
- "1.15.8"
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.15.5'
5+
go_version: '1.15.8'
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.15.5",
80+
'GO_VERSION': ENV['GO_VERSION'] || "1.15.8",
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
@@ -6,7 +6,7 @@
66
# 3.) $ make binaries install test
77
#
88

9-
ARG GOLANG_VERSION=1.15.5
9+
ARG GOLANG_VERSION=1.15.8
1010

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

0 commit comments

Comments
 (0)