Skip to content

Commit 156885f

Browse files
authored
Merge pull request #1012 from ArangoGutierrez/fix/e2e/nvgha
[no-relnote] install Go during E2E steps
2 parents c1c68aa + fbd387f commit 156885f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/e2e.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ jobs:
3636
id: vars
3737
run: |
3838
echo "COMMIT_SHORT_SHA=${GITHUB_SHA:0:8}" >> $GITHUB_ENV
39+
GOLANG_VERSION=$(./hack/golang-version.sh)
40+
echo "GOLANG_VERSION=${GOLANG_VERSION##GOLANG_VERSION := }" >> $GITHUB_ENV
41+
42+
- name: Install Go
43+
uses: actions/setup-go@v5
44+
with:
45+
go-version: ${{ env.GOLANG_VERSION }}
3946

4047
- name: Set up Holodeck
4148
uses: NVIDIA/[email protected]

0 commit comments

Comments
 (0)