From 5faa691f6c291e3bab6355a73906275194341ae2 Mon Sep 17 00:00:00 2001 From: Andrew Fischer Date: Fri, 22 Aug 2025 14:30:23 -0700 Subject: [PATCH] ci: update publish workflow to use .nvmrc Update GitHub Actions publish workflow to use node version from .nvmrc file instead of hardcoded version 18. Ticket: VL-3418 --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c9ef6e8eff..8f02bc6c71 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -23,7 +23,7 @@ jobs: - name: Setup Node uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 with: - node-version: 18 + node-version-file: .nvmrc - name: Install BitGoJS run: yarn install --with-frozen-lockfile