Skip to content

Commit af0a20a

Browse files
committed
1 parent 0ec47b3 commit af0a20a

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.15.2]
23+
go-version: [1.15.5]
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.2'
76+
go-version: '1.15.5'
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.2'
109+
go-version: '1.15.5'
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.2'
142+
go-version: '1.15.5'
143143

144144
- name: Set env
145145
shell: bash
@@ -174,7 +174,7 @@ jobs:
174174
steps:
175175
- uses: actions/setup-go@v1
176176
with:
177-
go-version: '1.15.2'
177+
go-version: '1.15.5'
178178

179179
- uses: actions/checkout@v2
180180
with:
@@ -236,7 +236,7 @@ jobs:
236236
steps:
237237
- uses: actions/setup-go@v1
238238
with:
239-
go-version: '1.15.2'
239+
go-version: '1.15.5'
240240

241241
- uses: actions/checkout@v2
242242
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.2'
21+
go-version: '1.15.5'
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.2'
134+
go-version: '1.15.5'
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.2'
65+
go-version: '1.15.5'
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.2'
5+
go_version: '1.15.5'
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.2",
80+
'GO_VERSION': ENV['GO_VERSION'] || "1.15.5",
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.2
9+
ARG GOLANG_VERSION=1.15.5
1010

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

0 commit comments

Comments
 (0)