From 5fcd774b7af469b88853a7aba64e0a92af897632 Mon Sep 17 00:00:00 2001 From: Jesse Attas Date: Thu, 29 Aug 2024 11:34:12 -0500 Subject: [PATCH] Update node-version in build.yml from 20 to 22 (#154) I am upgrading Node across projects that our team contributes to. We want the versions to be aligned so that developers can have consistent behaviors across pipelines and their development machines. See also: https://github.com/ni/nimble/pull/2364 https://dev.azure.com/ni/DevCentral/_git/Skyline/pullrequest/786732 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ea5f044..948df0b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,7 +27,7 @@ jobs: # Install dependencies - uses: actions/setup-node@v4 with: - node-version: '20' + node-version: '22' registry-url: 'https://registry.npmjs.org' cache: 'npm' - run: npm ci