From 7c8fa1ea4c5e0f3af187aab751de32ad0bc79473 Mon Sep 17 00:00:00 2001 From: Alejandro Lembke Barrientos Date: Wed, 3 Jun 2026 04:07:40 +0000 Subject: [PATCH] PR-715551: Upgrade CI to Node 24 to match local lockfile version. --- .github/workflows/main-workflow.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main-workflow.yml b/.github/workflows/main-workflow.yml index 4f03746..d71cdae 100644 --- a/.github/workflows/main-workflow.yml +++ b/.github/workflows/main-workflow.yml @@ -16,11 +16,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [22.x] + node-version: [24.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - uses: actions/checkout@v3 - - name: Use Node.js 22 + - name: Use Node.js 24 uses: actions/setup-node@v3 with: node-version: 22 @@ -38,7 +38,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 22 + node-version: 24 registry-url: https://registry.npmjs.org/ - run: npm ci - run: npm run build @@ -52,7 +52,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 22 + node-version: 24 registry-url: https://registry.npmjs.org/ - run: npm ci - run: npm publish --access=public