From 4ee0740a13bacee73b2e6d678cc8b2571175d6cc Mon Sep 17 00:00:00 2001 From: Amir Alavi Date: Fri, 22 Dec 2023 09:33:52 -0500 Subject: [PATCH] github action: install correct go-version --- .github/workflows/manifests.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/manifests.yaml b/.github/workflows/manifests.yaml index 83a2d8a53..2032f520e 100644 --- a/.github/workflows/manifests.yaml +++ b/.github/workflows/manifests.yaml @@ -5,7 +5,7 @@ on: jobs: deploy: - strategy: + strategy: matrix: k8s-version: ["v1.29.0"] descheduler-version: ["v0.28.1"] @@ -21,6 +21,10 @@ jobs: node_image: kindest/node:${{ matrix.k8s-version }} kubectl_version: ${{ matrix.k8s-version }} config: test/kind-config.yaml + - uses: actions/setup-go@v5 + with: + go-version-file: go.mod + cache: true - name: Build image run: | VERSION="dev" make dev-image