From 534685f9558cc67125156ba2fbdd0e0ade74cc33 Mon Sep 17 00:00:00 2001 From: Daniel Canter Date: Fri, 6 Aug 2021 16:07:14 -0700 Subject: [PATCH] Fix Linux CI Linter using go 1.15.14 For some reason the Linux CI runs end up using go 1.15.14 instead of 1.16.6 for the Windows runs, or any of the other CI steps. Not sure if this is due to the linter installing it's own version of go or something else. Signed-off-by: Daniel Canter --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f9ade0e8c..ce3a5b6ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,10 @@ jobs: os: [ubuntu-18.04, macos-10.15, windows-2019] steps: + - uses: actions/setup-go@v2 + with: + go-version: ${{ matrix.go-version }} + - uses: actions/checkout@v2 with: path: src/github.com/containerd/containerd @@ -41,6 +45,7 @@ jobs: version: v1.36.0 working-directory: src/github.com/containerd/containerd args: --timeout=5m + skip-go-installation: true # # Project checks