Skip to content

Commit 0eb4718

Browse files
committed
Upgrade to Go 1.14 in CI
1 parent 4ef468c commit 0eb4718

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Please avoid:
2323
## Building the project
2424

2525
Prerequisites:
26-
- Go 1.13
26+
- Go 1.14
2727

2828
Build with: `make` or `go build -o bin/gh ./cmd/gh`
2929

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010

1111
steps:
12-
- name: Set up Go 1.13
12+
- name: Set up Go 1.14
1313
uses: actions/setup-go@v2-beta
1414
with:
15-
go-version: 1.13
15+
go-version: 1.14
1616

1717
- name: Check out code
1818
uses: actions/checkout@v2

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- name: Set up Go 1.13
14+
- name: Set up Go 1.14
1515
uses: actions/setup-go@v2-beta
1616
with:
17-
go-version: 1.13
17+
go-version: 1.14
1818

1919
- name: Check out code
2020
uses: actions/checkout@v2

.github/workflows/releases.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
steps:
1212
- name: Checkout
1313
uses: actions/checkout@v2
14-
- name: Set up Go 1.13
14+
- name: Set up Go 1.14
1515
uses: actions/setup-go@v2-beta
1616
with:
17-
go-version: 1.13
17+
go-version: 1.14
1818
- name: Generate changelog
1919
run: |
2020
echo ::set-env name=GORELEASER_CURRENT_TAG::${GITHUB_REF#refs/tags/}

docs/source.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Installation from source
22

3-
0. Verify that you have Go 1.13+ installed
3+
0. Verify that you have Go 1.14+ installed
44
```
55
$ go version
6-
go version go1.13.7
6+
go version go1.14
77
```
88

99
1. Clone cli into `~/.githubcli`

0 commit comments

Comments
 (0)