From f722dca14bd3963b13f515192a48492d4201e260 Mon Sep 17 00:00:00 2001 From: Willhoit Date: Thu, 2 Jul 2026 11:41:47 -0500 Subject: [PATCH] chore: allow node version override in ctcOpen action --- .github/actions/ctcOpen/action.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/actions/ctcOpen/action.yml b/.github/actions/ctcOpen/action.yml index 5998771..478d82f 100644 --- a/.github/actions/ctcOpen/action.yml +++ b/.github/actions/ctcOpen/action.yml @@ -17,6 +17,10 @@ inputs: githubTag: description: 'The semver tag of the GitHub Release' required: false + nodeVersion: + description: version of node to use. It's better to specify latest, lts/* or lts/-1 than to hardcode numbers + required: false + default: lts/* outputs: changeCaseId: @@ -30,7 +34,7 @@ runs: - uses: actions/setup-node@v4 with: - node-version: lts/* + node-version: ${{ inputs.nodeVersion }} cache: npm - run: npm install -g @salesforce/change-case-management --omit=dev