From 6f5cc291f159f603be8df11bfcb1973bde7149e8 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Sun, 12 Dec 2021 01:27:06 +0100 Subject: [PATCH] [release/1.4] Update Go to 1.16.12 go1.16.12 (released 2021-12-09) includes security fixes to the syscall and net/http packages. See the Go 1.16.12 milestone on the issue tracker for details: https://github.com/golang/go/issues?q=milestone%3AGo1.16.12+label%3ACherryPickApproved Signed-off-by: Sebastiaan van Stijn --- .github/workflows/ci.yml | 12 ++++++------ .github/workflows/nightly.yml | 4 ++-- .github/workflows/release.yml | 2 +- .travis.yml | 2 +- .zuul/playbooks/containerd-build/run.yaml | 2 +- Vagrantfile | 2 +- contrib/Dockerfile.test | 2 +- 7 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 46a83f8cccef..45fbc410a46f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: - name: Install Go uses: actions/setup-go@v2 with: - go-version: '1.16.11' + go-version: '1.16.12' - name: Set env shell: bash @@ -82,7 +82,7 @@ jobs: steps: - uses: actions/setup-go@v2 with: - go-version: '1.16.11' + go-version: '1.16.12' - name: Set env shell: bash @@ -128,7 +128,7 @@ jobs: steps: - uses: actions/setup-go@v2 with: - go-version: '1.16.11' + go-version: '1.16.12' - name: Set env shell: bash @@ -166,7 +166,7 @@ jobs: steps: - uses: actions/setup-go@v2 with: - go-version: '1.16.11' + go-version: '1.16.12' - name: Set env shell: bash @@ -199,7 +199,7 @@ jobs: steps: - uses: actions/setup-go@v2 with: - go-version: '1.16.11' + go-version: '1.16.12' - name: Set env shell: bash @@ -285,7 +285,7 @@ jobs: steps: - uses: actions/setup-go@v2 with: - go-version: '1.16.11' + go-version: '1.16.12' - name: Set env shell: bash diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 20f288a8ef6f..b5763c66adf7 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -14,7 +14,7 @@ jobs: steps: - uses: actions/setup-go@v2 with: - go-version: '1.16.11' + go-version: '1.16.12' - name: Checkout uses: actions/checkout@v1 @@ -138,7 +138,7 @@ jobs: steps: - uses: actions/setup-go@v2 with: - go-version: '1.16.11' + go-version: '1.16.12' - name: Checkout uses: actions/checkout@v1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 623ddec7e1a5..90491e7e1d2f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -62,7 +62,7 @@ jobs: - name: Install Go uses: actions/setup-go@v2 with: - go-version: '1.16.11' + go-version: '1.16.12' - name: Set env shell: bash diff --git a/.travis.yml b/.travis.yml index 9c546bada5f7..8af6b229d654 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,7 @@ os: - linux go: - - "1.16.11" + - "1.16.12" env: - TRAVIS_GOOS=linux TEST_RUNTIME=io.containerd.runc.v1 TRAVIS_CGO_ENABLED=1 TRAVIS_DISTRO=bionic GOPROXY=direct diff --git a/.zuul/playbooks/containerd-build/run.yaml b/.zuul/playbooks/containerd-build/run.yaml index e11e0dcf3cee..83dc865097a7 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.16.11' + go_version: '1.16.12' arch: arm64 tasks: - name: Build containerd diff --git a/Vagrantfile b/Vagrantfile index a4ba30176d52..da256e04e33a 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.16.11", + 'GO_VERSION': ENV['GO_VERSION'] || "1.16.12", } sh.inline = <<~SHELL #!/usr/bin/env bash diff --git a/contrib/Dockerfile.test b/contrib/Dockerfile.test index a28951c5d01b..8237735f4a2b 100644 --- a/contrib/Dockerfile.test +++ b/contrib/Dockerfile.test @@ -10,7 +10,7 @@ # # docker build -t containerd-test --build-arg RUNC_VERSION=v1.0.0-rc93 -f Dockerfile.test ../ -ARG GOLANG_VERSION=1.16.11 +ARG GOLANG_VERSION=1.16.12 FROM golang:${GOLANG_VERSION} AS golang-base RUN mkdir -p /go/src/github.com/containerd/containerd