diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 44f6ec7c3965..b69c8d78f67f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: - go-version: [1.17.10] + go-version: [1.17.11] os: [ubuntu-18.04, macos-10.15, windows-2019] steps: @@ -55,7 +55,7 @@ jobs: steps: - uses: actions/setup-go@v2 with: - go-version: '1.17.10' + go-version: '1.17.11' - shell: bash run: | @@ -86,7 +86,7 @@ jobs: steps: - uses: actions/setup-go@v2 with: - go-version: '1.17.10' + go-version: '1.17.11' - uses: actions/checkout@v2 with: @@ -119,7 +119,7 @@ jobs: steps: - uses: actions/setup-go@v2 with: - go-version: '1.17.10' + go-version: '1.17.11' - name: Set env shell: bash @@ -165,7 +165,7 @@ jobs: steps: - uses: actions/setup-go@v2 with: - go-version: '1.17.10' + go-version: '1.17.11' - name: Set env shell: bash run: | @@ -230,7 +230,7 @@ jobs: strategy: matrix: os: [ubuntu-18.04, macos-10.15, windows-2019] - go-version: ['1.17.10'] + go-version: ['1.17.11'] include: # Go 1.13.x is still used by Docker/Moby - go-version: '1.13.x' @@ -276,7 +276,7 @@ jobs: steps: - uses: actions/setup-go@v2 with: - go-version: '1.17.10' + go-version: '1.17.11' - uses: actions/checkout@v2 with: @@ -357,7 +357,7 @@ jobs: steps: - uses: actions/setup-go@v2 with: - go-version: '1.17.10' + go-version: '1.17.11' - uses: actions/checkout@v2 with: @@ -509,7 +509,7 @@ jobs: steps: - uses: actions/setup-go@v2 with: - go-version: '1.17.10' + go-version: '1.17.11' - uses: actions/checkout@v2 with: path: src/github.com/containerd/containerd diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index e8226ee7507b..43a61066189e 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -18,7 +18,7 @@ jobs: steps: - uses: actions/setup-go@v2 with: - go-version: '1.17.10' + go-version: '1.17.11' - uses: actions/checkout@v2 with: @@ -135,7 +135,7 @@ jobs: steps: - uses: actions/setup-go@v2 with: - go-version: '1.17.10' + go-version: '1.17.11' - uses: actions/checkout@v2 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 301b705afcf6..72a980bfff55 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.17.10' + go-version: '1.17.11' - name: Set env shell: bash diff --git a/.zuul/playbooks/containerd-build/integration-test.yaml b/.zuul/playbooks/containerd-build/integration-test.yaml index adcac8c33e13..05aacd76dee0 100644 --- a/.zuul/playbooks/containerd-build/integration-test.yaml +++ b/.zuul/playbooks/containerd-build/integration-test.yaml @@ -2,7 +2,7 @@ become: yes roles: - role: config-golang - go_version: '1.17.10' + go_version: '1.17.11' arch: arm64 tasks: - name: Install pre-requisites diff --git a/.zuul/playbooks/containerd-build/run.yaml b/.zuul/playbooks/containerd-build/run.yaml index 33a0a3afcf1c..584663ad3e62 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.17.10' + go_version: '1.17.11' arch: arm64 tasks: - name: Build containerd diff --git a/.zuul/playbooks/containerd-build/unit-test.yaml b/.zuul/playbooks/containerd-build/unit-test.yaml index 8967f1ca1a82..8a98db11bc1d 100644 --- a/.zuul/playbooks/containerd-build/unit-test.yaml +++ b/.zuul/playbooks/containerd-build/unit-test.yaml @@ -2,7 +2,7 @@ become: yes roles: - role: config-golang - go_version: '1.17.10' + go_version: '1.17.11' arch: arm64 tasks: - name: Build and test containerd diff --git a/Vagrantfile b/Vagrantfile index 36bc5b04287b..b6119dbf9088 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.17.10", + 'GO_VERSION': ENV['GO_VERSION'] || "1.17.11", } sh.inline = <<~SHELL #!/usr/bin/env bash diff --git a/contrib/Dockerfile.test b/contrib/Dockerfile.test index 6efebe1ebdea..5ff98f06f4be 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.17.10 +ARG GOLANG_VERSION=1.17.11 FROM golang:${GOLANG_VERSION} AS golang-base RUN mkdir -p /go/src/github.com/containerd/containerd