From 2c8cafd533dac26e3ef924c9761cd690b1517c66 Mon Sep 17 00:00:00 2001 From: Joshua Lochner Date: Mon, 20 Oct 2025 12:34:12 -0700 Subject: [PATCH] Set Node.js version to 24 in publish workflow Before we add support for https://nodejs.org/en/blog/release/v25.0.0 --- .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 2afa06313..f94756179 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,7 +10,7 @@ jobs: # Setup .npmrc file to publish to npm - uses: actions/setup-node@v3 with: - node-version: 'latest' + node-version: '24' registry-url: 'https://registry.npmjs.org' - run: npm ci - run: npm run build