mirror of
https://github.com/actions/setup-go.git
synced 2025-04-23 17:40:50 +00:00
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?
This commit is contained in:
parent
25c870be4d
commit
fecd8b0af8
1 changed files with 7 additions and 7 deletions
14
.github/workflows/versions.yml
vendored
14
.github/workflows/versions.yml
vendored
|
@ -19,26 +19,26 @@ jobs:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: setup-go ^1.13.6
|
- name: setup-go ^1.14.0
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
go-version: ^1.13.6
|
go-version: ^1.14.0
|
||||||
|
|
||||||
- name: validate version
|
- name: validate version
|
||||||
run: go version | grep "go1.13."
|
run: go version | grep "go1.14."
|
||||||
|
|
||||||
- name: setup-go 1.13
|
- name: setup-go 1.13
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
go-version: 1.13
|
go-version: 1.13
|
||||||
|
|
||||||
- name: validate version
|
- name: validate version
|
||||||
run: go version | grep "go1.13."
|
run: go version | grep "go1.13."
|
||||||
|
|
||||||
- name: setup-go 1.12.9
|
- name: setup-go 1.12.9
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
go-version: 1.12.9
|
go-version: 1.12.9
|
||||||
|
|
||||||
- name: validate version
|
- name: validate version
|
||||||
run: go version | grep "go1.12.9"
|
run: go version | grep "go1.12.9"
|
||||||
|
|
Loading…
Add table
Reference in a new issue