Merge pull request #5431 from AkihiroSuda/go113
CI: allow Go 1.13 for Docker/Moby compatibility
This commit is contained in:
commit
32005190c0
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
@ -217,11 +217,16 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-18.04, macos-10.15, windows-2019]
|
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:
|
steps:
|
||||||
- uses: actions/setup-go@v2
|
- uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: '1.16.3'
|
go-version: ${{ matrix.go-version }}
|
||||||
|
|
||||||
- name: Set env
|
- name: Set env
|
||||||
shell: bash
|
shell: bash
|
||||||
|
Loading…
Reference in New Issue
Block a user