From eb5607f7e944ca5e90edd137c14ff9dc74823956 Mon Sep 17 00:00:00 2001 From: Gaelle Fournier Date: Tue, 24 Oct 2023 12:47:55 +0200 Subject: [PATCH] fix(ci): Fix golang setup error in coverage workflow --- .github/workflows/coverage.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 30f0a953a9..fa591502e7 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -32,12 +32,6 @@ jobs: steps: - - name: Setup go - uses: actions/setup-go@v4 - with: - go-version-file: 'go.mod' - check-latest: true - - name: Prepare repo configuration shell: bash env: @@ -63,6 +57,12 @@ jobs: run: | git pull --rebase upstream ${{ github.event.pull_request.base.ref }} && echo "rebaseAborted=0" >> $GITHUB_ENV || echo "rebaseAborted=1" >> $GITHUB_ENV + - name: Setup go + uses: actions/setup-go@v4 + with: + go-version-file: 'go.mod' + check-latest: true + - name: Get New Coverage shell: bash working-directory: ./${{ github.event.pull_request.head.repo.name }}