Merge pull request #5431 from AkihiroSuda/go113

CI: allow Go 1.13 for Docker/Moby compatibility
This commit is contained in:
Michael Crosby 2021-04-29 14:07:07 -04:00 committed by GitHub
commit 32005190c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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