From dc312119c4733eaf0ea50b702ab14fa8b14e993a Mon Sep 17 00:00:00 2001 From: Nacho Barrientos Date: Mon, 1 Jun 2020 16:40:19 +0200 Subject: [PATCH] Build using Go 1.14 --- .github/workflows/build.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- .promu.yml | 2 +- go.mod | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index eec5b0c..801ce4b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,10 +10,10 @@ jobs: os: [ubuntu-latest] steps: - - name: Set up Go 1.13 + - name: Set up Go 1.14 uses: actions/setup-go@v1 with: - go-version: 1.13 + go-version: 1.14 id: go - name: Check out code into the Go module directory diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 404b8ef..6604f42 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,10 +8,10 @@ jobs: name: release linux/amd64 runs-on: ubuntu-latest steps: - - name: Set up Go 1.13 + - name: Set up Go 1.14 uses: actions/setup-go@v1 with: - go-version: 1.13 + go-version: 1.14 id: go - name: Check out code into the Go module directory uses: actions/checkout@v1 diff --git a/.promu.yml b/.promu.yml index 2f7cd8a..93a2b3a 100644 --- a/.promu.yml +++ b/.promu.yml @@ -1,5 +1,5 @@ go: - version: 1.13 + version: 1.14 repository: path: github.com/nbarrientos/cryptowat_exporter build: diff --git a/go.mod b/go.mod index 80724c6..23ecafa 100755 --- a/go.mod +++ b/go.mod @@ -7,4 +7,4 @@ require ( gopkg.in/alecthomas/kingpin.v2 v2.2.6 ) -go 1.13 +go 1.14