From 06b579c976f824f9ee579dbd58975181c107baff Mon Sep 17 00:00:00 2001 From: Shoma Okamoto <32533860+shmokmt@users.noreply.github.com> Date: Thu, 13 Aug 2020 22:22:09 +0900 Subject: [PATCH 1/4] update go version --- .github/workflows/go.yml | 4 ++-- .github/workflows/lint.yml | 4 ++-- .github/workflows/releases.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index f738eba45..d230d3d07 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -9,10 +9,10 @@ jobs: runs-on: ${{ matrix.os }} steps: - - name: Set up Go 1.14 + - name: Set up Go 1.15 uses: actions/setup-go@v2 with: - go-version: 1.14 + go-version: 1.15 - name: Check out code uses: actions/checkout@v2 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ca2f61ae9..4dc95a4f1 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -16,10 +16,10 @@ jobs: runs-on: ubuntu-latest steps: - - name: Set up Go 1.14 + - name: Set up Go 1.15 uses: actions/setup-go@v2 with: - go-version: 1.14 + go-version: 1.15 - name: Check out code uses: actions/checkout@v2 diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 1654e74df..1c3baa6e8 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -11,10 +11,10 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - - name: Set up Go 1.14 + - name: Set up Go 1.15 uses: actions/setup-go@v2 with: - go-version: 1.14 + go-version: 1.15 - name: Generate changelog run: | echo ::set-env name=GORELEASER_CURRENT_TAG::${GITHUB_REF#refs/tags/} From bcc1b433ab290e7c19d2282d7d14249826690f1a Mon Sep 17 00:00:00 2001 From: Shoma Okamoto <32533860+shmokmt@users.noreply.github.com> Date: Fri, 14 Aug 2020 10:00:04 +0900 Subject: [PATCH 2/4] bump go version to 1.15 in docs --- .github/CONTRIBUTING.md | 2 +- docs/source.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index a512f2c26..89f0031bd 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -23,7 +23,7 @@ Please avoid: ## Building the project Prerequisites: -- Go 1.14 +- Go 1.15 Build with: `make` or `go build -o bin/gh ./cmd/gh` diff --git a/docs/source.md b/docs/source.md index 0c4e3db63..5cf4c80e8 100644 --- a/docs/source.md +++ b/docs/source.md @@ -1,10 +1,10 @@ # Installation from source -0. Verify that you have Go 1.13.8+ installed +0. Verify that you have Go 1.15+ installed ```sh $ go version - go version go1.14 + go version go1.15 ``` If `go` is not installed, follow instructions on [the Go website](https://golang.org/doc/install). From 66da8a2431f403e70b992a9f0b10a8587602541f Mon Sep 17 00:00:00 2001 From: Nate Smith Date: Fri, 14 Aug 2020 09:30:30 -0500 Subject: [PATCH 3/4] Update CONTRIBUTING.md --- .github/CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 89f0031bd..a512f2c26 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -23,7 +23,7 @@ Please avoid: ## Building the project Prerequisites: -- Go 1.15 +- Go 1.14 Build with: `make` or `go build -o bin/gh ./cmd/gh` From 8a5be0fabfcb4d9ad308edc056edf91594e831b8 Mon Sep 17 00:00:00 2001 From: Nate Smith Date: Fri, 14 Aug 2020 09:30:44 -0500 Subject: [PATCH 4/4] Update source.md --- docs/source.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source.md b/docs/source.md index 5cf4c80e8..951731f8f 100644 --- a/docs/source.md +++ b/docs/source.md @@ -4,7 +4,7 @@ ```sh $ go version - go version go1.15 + go version go1.14 ``` If `go` is not installed, follow instructions on [the Go website](https://golang.org/doc/install).