Skip to content

Commit 534685f

Browse files
committed
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 <dcanter@microsoft.com>
1 parent b43d950 commit 534685f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ jobs:
2626
os: [ubuntu-18.04, macos-10.15, windows-2019]
2727

2828
steps:
29+
- uses: actions/setup-go@v2
30+
with:
31+
go-version: ${{ matrix.go-version }}
32+
2933
- uses: actions/checkout@v2
3034
with:
3135
path: src/github.com/containerd/containerd
@@ -41,6 +45,7 @@ jobs:
4145
version: v1.36.0
4246
working-directory: src/github.com/containerd/containerd
4347
args: --timeout=5m
48+
skip-go-installation: true
4449

4550
#
4651
# Project checks

0 commit comments

Comments
 (0)