From ef1cedcdc829eac17ab28883ef40957c70c5762f Mon Sep 17 00:00:00 2001 From: Ville Vesilehto Date: Mon, 19 May 2025 21:10:49 +0300 Subject: [PATCH] ci(test-e2e): add Go version setup to workflow (#7309) Add environment variable setup step for Go version in the e2e tests job of the GitHub workflow. This ensures consistent Go version usage across all test jobs and fixes the warning about missing go-version input. Signed-off-by: Ville Vesilehto --- .github/workflows/go.test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/go.test.yml b/.github/workflows/go.test.yml index 78dca7653..07741ebe1 100644 --- a/.github/workflows/go.test.yml +++ b/.github/workflows/go.test.yml @@ -58,6 +58,9 @@ jobs: - name: Check out code uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - name: Setup Go Version + run: echo "GO_VERSION=$(cat .go-version)" >> $GITHUB_ENV + - name: Install Go uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0 with: