From a66295f0e2c096cd33b522310de7e6f3ca76e7f2 Mon Sep 17 00:00:00 2001 From: Daniel Mellado <1313475+danielmellado@users.noreply.github.com> Date: Thu, 17 Aug 2023 14:39:47 +0200 Subject: [PATCH] fix: update github workflow to use node>=16 (#336) GitHub workflow is giving off a warning about the node version used for some of the actions (engineerd/setup-kind) being deprecated. This commit changes the plugin to helm/kind-action to avoid that. Signed-off-by: Daniel Mellado --- .github/e2e-tests-olm/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/e2e-tests-olm/action.yaml b/.github/e2e-tests-olm/action.yaml index 44ac0b17..6cbca9ba 100644 --- a/.github/e2e-tests-olm/action.yaml +++ b/.github/e2e-tests-olm/action.yaml @@ -25,10 +25,10 @@ runs: - uses: azure/setup-kubectl@v3 - name: Start Kind - uses: engineerd/setup-kind@v0.5.0 + uses: helm/kind-action@v1.7.0 with: version: ${{ inputs.kind-version }} - image: ${{ inputs.kind-image }} + node_image: ${{ inputs.kind-image }} wait: 300s config: ./hack/kind/config.yaml