From af0a20a4d56a999cf4b86f770b809c8e93a782f7 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Mon, 16 Nov 2020 14:36:35 +0900 Subject: [PATCH] Bump Golang 1.15.5 Changes: https://golang.org/doc/devel/release.html#go1.15 Signed-off-by: Akihiro Suda --- .github/workflows/ci.yml | 12 ++++++------ .github/workflows/nightly.yml | 4 ++-- .github/workflows/release.yml | 2 +- .zuul/playbooks/containerd-build/run.yaml | 2 +- Vagrantfile | 2 +- contrib/Dockerfile.test | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2b7a34723..4f8303d9a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: - go-version: [1.15.2] + go-version: [1.15.5] os: [ubuntu-18.04, macos-10.15, windows-2019] steps: @@ -73,7 +73,7 @@ jobs: steps: - uses: actions/setup-go@v1 with: - go-version: '1.15.2' + go-version: '1.15.5' - uses: actions/checkout@v2 with: @@ -106,7 +106,7 @@ jobs: steps: - uses: actions/setup-go@v1 with: - go-version: '1.15.2' + go-version: '1.15.5' - name: Set env shell: bash @@ -139,7 +139,7 @@ jobs: steps: - uses: actions/setup-go@v1 with: - go-version: '1.15.2' + go-version: '1.15.5' - name: Set env shell: bash @@ -174,7 +174,7 @@ jobs: steps: - uses: actions/setup-go@v1 with: - go-version: '1.15.2' + go-version: '1.15.5' - uses: actions/checkout@v2 with: @@ -236,7 +236,7 @@ jobs: steps: - uses: actions/setup-go@v1 with: - go-version: '1.15.2' + go-version: '1.15.5' - uses: actions/checkout@v2 with: diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 551644d76..692f30b20 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -18,7 +18,7 @@ jobs: steps: - uses: actions/setup-go@v1 with: - go-version: '1.15.2' + go-version: '1.15.5' - uses: actions/checkout@v2 with: @@ -131,7 +131,7 @@ jobs: steps: - uses: actions/setup-go@v1 with: - go-version: '1.15.2' + go-version: '1.15.5' - uses: actions/checkout@v2 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ba3c7b070..55adb67e7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -62,7 +62,7 @@ jobs: - name: Install Go uses: actions/setup-go@v1 with: - go-version: '1.15.2' + go-version: '1.15.5' - name: Set env shell: bash diff --git a/.zuul/playbooks/containerd-build/run.yaml b/.zuul/playbooks/containerd-build/run.yaml index d537d51ea..b1975468d 100644 --- a/.zuul/playbooks/containerd-build/run.yaml +++ b/.zuul/playbooks/containerd-build/run.yaml @@ -2,7 +2,7 @@ become: yes roles: - role: config-golang - go_version: '1.15.2' + go_version: '1.15.5' arch: arm64 tasks: - name: Build containerd diff --git a/Vagrantfile b/Vagrantfile index e37cfab95..592e80697 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -77,7 +77,7 @@ Vagrant.configure("2") do |config| config.vm.provision "install-golang", type: "shell", run: "once" do |sh| sh.upload_path = "/tmp/vagrant-install-golang" sh.env = { - 'GO_VERSION': ENV['GO_VERSION'] || "1.15.2", + 'GO_VERSION': ENV['GO_VERSION'] || "1.15.5", } sh.inline = <<~SHELL #!/usr/bin/env bash diff --git a/contrib/Dockerfile.test b/contrib/Dockerfile.test index f55628e1b..bb5a01e96 100644 --- a/contrib/Dockerfile.test +++ b/contrib/Dockerfile.test @@ -6,7 +6,7 @@ # 3.) $ make binaries install test # -ARG GOLANG_VERSION=1.15.2 +ARG GOLANG_VERSION=1.15.5 FROM golang:${GOLANG_VERSION} AS golang-base RUN mkdir -p /go/src/github.com/containerd/containerd