github/workflows: Go 1.14 is out, fix test

1.14.0 satisfies ^1.13.6, so the test started failing once Go 1.14 was
released.

This test is going to break again when Go 1.15 is released, so maybe we
need a better fix?
pull/41/head
francisco souza 5 years ago
parent 25c870be4d
commit fecd8b0af8
No known key found for this signature in database
GPG Key ID: 3F6AA3B701F20B3E

@ -19,13 +19,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: setup-go ^1.13.6
- name: setup-go ^1.14.0
uses: ./
with:
go-version: ^1.13.6
go-version: ^1.14.0
- name: validate version
run: go version | grep "go1.13."
run: go version | grep "go1.14."
- name: setup-go 1.13
uses: ./

Loading…
Cancel
Save