Skip to content

Commit

Permalink
ci/gha: update
Browse files Browse the repository at this point in the history
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 <kolyshkin@gmail.com>
  • Loading branch information
kolyshkin committed Jul 13, 2021
1 parent af8da76 commit 2ed4073
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -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 }}

Expand Down

0 comments on commit 2ed4073

Please sign in to comment.