From f3e0669c2d040ae5d7bedd9e4c450274dcb3285e Mon Sep 17 00:00:00 2001 From: ionutboangiu Date: Fri, 13 Oct 2023 11:33:41 -0400 Subject: [PATCH] Update github workflows to use correct go version --- .github/workflows/build.yaml | 8 +------- .github/workflows/integration_tests.yaml | 4 +--- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 4f83912d6..573c5068b 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -27,11 +27,6 @@ jobs: # needs: check-if-duplicate-action # if: needs.check-if-duplicate-action.outputs.should_skip != 'true' runs-on: ubuntu-latest - strategy: - fail-fast: true - matrix: - go: ["stable"] # could be a good idea to consider oldstable as well - steps: - name: Check out code uses: actions/checkout@v3 @@ -39,8 +34,7 @@ jobs: - name: Install Go uses: actions/setup-go@v4 with: - go-version: ${{ matrix.go }} - check-latest: true + go-version: "1.21.x" - name: Go Format run: gofmt -s -w . && git diff --exit-code diff --git a/.github/workflows/integration_tests.yaml b/.github/workflows/integration_tests.yaml index 74857b56d..99be28862 100644 --- a/.github/workflows/integration_tests.yaml +++ b/.github/workflows/integration_tests.yaml @@ -50,6 +50,4 @@ jobs: - name: Run integration tests run: | - sudo su <