Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 4 additions & 11 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,8 @@ jobs:
steps:

- uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v4.3.1
with:
version: '3.13.3'

- name: helm version
run: helm version

- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Add Helm repos
run: make repo-add update-req
Expand Down Expand Up @@ -83,7 +78,7 @@ jobs:
# - mlrun-kit # mysql pod not starting in minikube in github workflows

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 2 # Fetch 2 commits to compare changes

Expand All @@ -102,14 +97,12 @@ jobs:
"${GITHUB_WORKSPACE}/hack/scripts/ci/free_space.sh"
- uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v4.3.1
if: steps.chart_changed.outputs.any_changed == 'true'
with:
version: "v3.13.3"

- uses: manusa/actions-setup-minikube@b589f2d61bf96695c546929c72b38563e856059d #v2.14.0
if: steps.chart_changed.outputs.any_changed == 'true'
with:
minikube version: "v1.32.0"
kubernetes version: "v1.29.0"
minikube version: "v1.37.0"
kubernetes version: "v1.34.0"
driver: docker
github token: ${{ github.token }}

Expand Down
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -314,8 +314,10 @@ check-helm:
echo "Missing helm command" ; \
exit 2 ; \
fi
@HELM_VERSION=$$($(HELM) version --short --client 2>/dev/null || echo "unknown") ; \
@HELM_VERSION=$$($(HELM) version --short 2>/dev/null) ; \
case "$$HELM_VERSION" in \
v4*) \
;; \
v3*) \
;; \
*) \
Expand Down