Skip to content

Commit ba57d7b

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 [1]. This commit adds a new action to ensure about installing a specific version of node. [1] https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/ Signed-off-by: Daniel Mellado <[email protected]>
1 parent 3f29722 commit ba57d7b

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)