From 0087c6317e923adeded1b5fbf26c1750a7fa3a36 Mon Sep 17 00:00:00 2001 From: Dylan Zeigler Date: Tue, 30 Jun 2026 19:24:28 -0700 Subject: [PATCH] =?UTF-8?q?fix:=20pin=20CTC=20to=20Node=2020=20=E2=80=94?= =?UTF-8?q?=20unsettled=20await=20affects=20Node=2022.23=20too?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Node 22.23.0 backported the unsettled top-level await detection from Node 24, so lts/-1 still breaks @salesforce/change-case-management. Pin to Node 20 until the CTC tooling is fixed. --- .github/workflows/onRelease.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/onRelease.yml b/.github/workflows/onRelease.yml index 7b104d5b..c83fb907 100644 --- a/.github/workflows/onRelease.yml +++ b/.github/workflows/onRelease.yml @@ -29,6 +29,6 @@ jobs: sign: true tag: ${{ needs.getDistTag.outputs.tag || 'latest' }} githubTag: ${{ github.event.release.tag_name || inputs.tag }} - nodeVersion: 'lts/-1' + nodeVersion: '20' secrets: inherit