Skip to content

Commit 27de1fd

Browse files
author
Nate Smith
authored
Merge pull request cli#881 from cli/go1.14
Upgrade to Go 1.14 in CI
2 parents 3000847 + 1fb27af commit 27de1fd

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
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: 3 additions & 3 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
@@ -24,7 +24,7 @@ jobs:
2424
go mod verify
2525
go mod download
2626
27-
LINT_VERSION=1.24.0
27+
LINT_VERSION=1.26.0
2828
curl -fsSL https://github.com/golangci/golangci-lint/releases/download/v${LINT_VERSION}/golangci-lint-${LINT_VERSION}-linux-amd64.tar.gz | \
2929
tar xz --strip-components 1 --wildcards \*/golangci-lint
3030
mkdir -p bin && mv golangci-lint bin/

.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)