From fbf2309962cfecefa04426f687af30d4967d3bc5 Mon Sep 17 00:00:00 2001 From: Marko Date: Tue, 17 Nov 2020 11:49:57 +0100 Subject: [PATCH] ci: remove `add-path` (#5674) --- .github/workflows/tests.yml | 20 ++++---------------- crypto/ed25519/ed25519.go | 1 + 2 files changed, 5 insertions(+), 16 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 54a94ae97..abd79aad4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -25,7 +25,7 @@ jobs: steps: - uses: actions/setup-go@v2 with: - go-version: '^1.15.4' + go-version: "^1.15.4" - uses: actions/checkout@v2 - uses: technote-space/get-diff-action@v4 with: @@ -33,9 +33,6 @@ jobs: **/**.go go.mod go.sum - - name: Set GOBIN - run: | - echo "::add-path::$(go env GOPATH)/bin" - name: install run: make install install_abci if: "env.GIT_DIFF != ''" @@ -60,7 +57,7 @@ jobs: steps: - uses: actions/setup-go@v2 with: - go-version: '^1.15.4' + go-version: "^1.15.4" - uses: actions/checkout@v2 - uses: technote-space/get-diff-action@v4 with: @@ -68,9 +65,6 @@ jobs: **/**.go go.mod go.sum - - name: Set GOBIN - run: | - echo "::add-path::$(go env GOPATH)/bin" - uses: actions/cache@v2.1.3 with: path: ~/go/pkg/mod @@ -95,7 +89,7 @@ jobs: steps: - uses: actions/setup-go@v2 with: - go-version: '^1.15.4' + go-version: "^1.15.4" - uses: actions/checkout@v2 - uses: technote-space/get-diff-action@v4 with: @@ -103,9 +97,6 @@ jobs: **/**.go go.mod go.sum - - name: Set GOBIN - run: | - echo "::add-path::$(go env GOPATH)/bin" - uses: actions/cache@v2.1.3 with: path: ~/go/pkg/mod @@ -129,7 +120,7 @@ jobs: steps: - uses: actions/setup-go@v2 with: - go-version: '^1.15.4' + go-version: "^1.15.4" - uses: actions/checkout@v2 - uses: technote-space/get-diff-action@v4 with: @@ -137,9 +128,6 @@ jobs: **/**.go go.mod go.sum - - name: Set GOBIN - run: | - echo "::add-path::$(go env GOPATH)/bin" - uses: actions/cache@v2.1.3 with: path: ~/go/pkg/mod diff --git a/crypto/ed25519/ed25519.go b/crypto/ed25519/ed25519.go index 5bed1adde..30d470485 100644 --- a/crypto/ed25519/ed25519.go +++ b/crypto/ed25519/ed25519.go @@ -8,6 +8,7 @@ import ( "io" "github.com/hdevalence/ed25519consensus" + "github.com/tendermint/tendermint/crypto" "github.com/tendermint/tendermint/crypto/tmhash" tmjson "github.com/tendermint/tendermint/libs/json"