From e3297f969450790f283ab419a28c5b9cb9431e12 Mon Sep 17 00:00:00 2001 From: Aadhitya A Date: Thu, 7 Apr 2022 23:21:52 +0530 Subject: [PATCH] Add setup go step Signed-off-by: Aadhitya A --- .github/workflows/build-and-release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index 647fea72..615645d4 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -19,6 +19,7 @@ jobs: uses: actions/setup-go@v3 with: go-version: '1.17' + check-latest: 'true' - run: GOPROXY=direct GOSUMDB=off GO111MODULE=on go build -o meshery-meshsync . docker: name: Docker build and push @@ -28,6 +29,11 @@ jobs: uses: actions/checkout@master with: fetch-depth: 1 + - name: Setup go + uses: actions/setup-go@v3 + with: + go-version: '1.17' + check-latest: 'true' - name: Docker login uses: azure/docker-login@v1 with: