From 4e7915f8014213406975ed433f25d91dcd8c51e6 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Wed, 28 Apr 2021 14:09:31 +0900 Subject: [PATCH] CI: allow Go 1.13 for Docker/Moby compatibility Docker/Moby still uses Go 1.13 for building containerd binaries. Signed-off-by: Akihiro Suda --- .github/workflows/ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6bb47307c..7af995b5c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -217,11 +217,16 @@ jobs: strategy: matrix: os: [ubuntu-18.04, macos-10.15, windows-2019] + go-version: ['1.16.3'] + include: + # Go 1.13.x is still used by Docker/Moby + - go-version: '1.13.x' + os: ubuntu-18.04 steps: - uses: actions/setup-go@v2 with: - go-version: '1.16.3' + go-version: ${{ matrix.go-version }} - name: Set env shell: bash @@ -571,4 +576,4 @@ jobs: name: TestResults cgroup2 ${{ matrix.runtime }} ${{matrix.runc}} path: | ${{github.workspace}}/*-junit.xml - ${{github.workspace}}/critestreport/* \ No newline at end of file + ${{github.workspace}}/critestreport/*