X Tutup
Skip to content

Commit ec7d905

Browse files
committed
Update to go 1.15.8
go1.15.8 (released 2021/02/04) includes fixes to the compiler, linker, runtime, the go command, and the net/http package. See the Go 1.15.8 milestone on the issue tracker for details. https://github.com/golang/go/issues?q=milestone%3AGo1.15.8+label%3ACherryPickApproved full diff: golang/go@go1.15.7...go1.15.8 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
1 parent 5f2d02a commit ec7d905

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.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.15.7]
23+
go-version: [1.15.8]
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@v1
7575
with:
76-
go-version: '1.15.7'
76+
go-version: '1.15.8'
7777

7878
- uses: actions/checkout@v2
7979
with:
@@ -106,7 +106,7 @@ jobs:
106106
steps:
107107
- uses: actions/setup-go@v1
108108
with:
109-
go-version: '1.15.7'
109+
go-version: '1.15.8'
110110

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

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

186186
- uses: actions/checkout@v2
187187
with:
@@ -249,7 +249,7 @@ jobs:
249249
steps:
250250
- uses: actions/setup-go@v1
251251
with:
252-
go-version: '1.15.7'
252+
go-version: '1.15.8'
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@v1
2020
with:
21-
go-version: '1.15.7'
21+
go-version: '1.15.8'
2222

2323
- uses: actions/checkout@v2
2424
with:
@@ -131,7 +131,7 @@ jobs:
131131
steps:
132132
- uses: actions/setup-go@v1
133133
with:
134-
go-version: '1.15.7'
134+
go-version: '1.15.8'
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@v1
6464
with:
65-
go-version: '1.15.7'
65+
go-version: '1.15.8'
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.15.7'
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.7",
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.7
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)
X Tutup