From 2ed407314b035ba26bfc838da29b864d06779363 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Mon, 12 Jul 2021 19:10:48 -0700 Subject: [PATCH] ci/gha: update 1. Update Go versions used in tests to current stable releases (plus 1.13 which is still used by Moby). 2. Explicitly specify ubuntu version used. 3. Bump actions/setup-go to v2. Signed-off-by: Kir Kolyshkin --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f474b15..425b2f7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,12 +12,12 @@ jobs: name: Build strategy: matrix: - go-versions: [1.12.x, 1.13.x, 1.14.x] - platform: [ubuntu-latest] + go-versions: [1.13.x, 1.15.x, 1.16.x] + platform: [ubuntu-20.04] runs-on: ${{ matrix.platform }} steps: - name: Install Go - uses: actions/setup-go@v1 + uses: actions/setup-go@v2 with: go-version: ${{ matrix.go-version }}