From 7627223d0f24d4720cd635ccec0dd3d22b71b9aa Mon Sep 17 00:00:00 2001 From: Adam Zhang Date: Mon, 15 Jun 2026 14:44:43 +0800 Subject: [PATCH] bump the setup kind action update kind setup action to helm/kind-action@v1 and use FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true to suppress warning. Signed-off-by: Adam Zhang --- .github/workflows/e2e-test-kind.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e-test-kind.yaml b/.github/workflows/e2e-test-kind.yaml index 7dcd51408..6a2684d72 100644 --- a/.github/workflows/e2e-test-kind.yaml +++ b/.github/workflows/e2e-test-kind.yaml @@ -1,4 +1,6 @@ name: "Run the E2E test on kind" +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true on: push: pull_request: @@ -133,11 +135,10 @@ jobs: - name: Install MinIO run: | docker run -d --rm -p 9000:9000 -e "MINIO_ROOT_USER=minio" -e "MINIO_ROOT_PASSWORD=minio123" -e "MINIO_DEFAULT_BUCKETS=bucket,additional-bucket" bitnami/minio:local - - uses: engineerd/setup-kind@v0.6.2 + - uses: helm/kind-action@v1 with: - skipClusterLogsExport: true version: "v0.32.0" - image: "kindest/node:v${{ matrix.k8s }}" + node_image: "kindest/node:v${{ matrix.k8s }}" - name: Fetch built CLI id: cli-cache uses: actions/cache@v4