Skip to content

Commit

Permalink
fix: update github workflow to use node>=16
Browse files Browse the repository at this point in the history
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 <dmellado@redhat.com>
  • Loading branch information
danielmellado committed Aug 14, 2023
1 parent 3f29722 commit 33f0034
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/e2e-tests-olm/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ runs:
check-latest: true
cache: true

- name: Set non-deprecated version of node
uses: actions/setup-node@v2
with:
node-version: '16'

- uses: azure/setup-kubectl@v3

- name: Start Kind
Expand Down

0 comments on commit 33f0034

Please sign in to comment.