From e5f38f0015604bf25aa3f970c904ad03194448ba Mon Sep 17 00:00:00 2001 From: Roberto Dip Date: Tue, 1 Nov 2022 09:34:52 -0300 Subject: [PATCH] fix integration.yml CI workflow by setting a Go version (#8516) We don't have a `matrix.go-version` defined, so the task was using `go1.17.13` as the default. This explicitly sets the version to `go1.19.1`, I didn't use a `matrix` definition because at least for now, we only want to run this test using a single Go version. Since I was there, I also updated test-native-tooling-packaging.yml to use `go1.19.1` too. --- .github/workflows/integration.yml | 2 +- .github/workflows/test-native-tooling-packaging.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 3585fa3ed8..7eb2f1ffd3 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -213,7 +213,7 @@ jobs: - name: Install Go uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f # v2 with: - go-version: ${{ matrix.go-version }} + go-version: '^1.19.1' - name: Checkout Code uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v2 diff --git a/.github/workflows/test-native-tooling-packaging.yml b/.github/workflows/test-native-tooling-packaging.yml index 4a7fa58dbf..d9b74abfaa 100644 --- a/.github/workflows/test-native-tooling-packaging.yml +++ b/.github/workflows/test-native-tooling-packaging.yml @@ -40,7 +40,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - go-version: ['^1.17.8'] + go-version: ['^1.19.1'] runs-on: ${{ matrix.os }} steps: