Skip to content

Commit 33f0034

Browse files
committed
fix: update github workflow to use node>=16
GitHub workflow is giving off a warning about the node version used for some of the actions (engineerd/setup-kind) being deprecated. This commit adds a new action to ensure about installing a specific version of node. Signed-off-by: Daniel Mellado <[email protected]>
1 parent 3f29722 commit 33f0034

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/e2e-tests-olm/action.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ runs:
2222
check-latest: true
2323
cache: true
2424

25+
- name: Set non-deprecated version of node
26+
uses: actions/setup-node@v2
27+
with:
28+
node-version: '16'
29+
2530
- uses: azure/setup-kubectl@v3
2631

2732
- name: Start Kind

0 commit comments

Comments
 (0)