From 2ffef5b2c9fffb57ad47e7d9976340a41a48d316 Mon Sep 17 00:00:00 2001 From: Jason Weill <93281816+JasonWeill@users.noreply.github.com> Date: Thu, 5 Jan 2023 16:29:15 -0800 Subject: [PATCH] Updates default minimum node version from 16 to 18 --- .github/actions/base-setup/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/base-setup/action.yml b/.github/actions/base-setup/action.yml index d2978f5..09a507d 100644 --- a/.github/actions/base-setup/action.yml +++ b/.github/actions/base-setup/action.yml @@ -15,7 +15,7 @@ runs: shell: bash run: | PYTHON_VERSION="${{ inputs.python_version || matrix.python-version }}" - NODE_VERSION=${{ inputs.node_version || matrix.node-version || '16.x' }} + NODE_VERSION=${{ inputs.node_version || matrix.node-version || '18.x' }} DEPENDENCY_TYPE=${{ inputs.dependency_type }} # Handle default python value based on dependency type.