From 5899135de840310dea215f066ebfdfc1e8c76017 Mon Sep 17 00:00:00 2001 From: millerm30 Date: Mon, 22 Dec 2025 15:41:25 -0330 Subject: [PATCH 1/2] Update Node.js version in GitHub Actions workflow from 18 to 20 --- .github/workflows/actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index eeac178..43ee115 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -16,7 +16,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 - name: Cache node_modules id: cache-modules From c3db3761319b742fc14ef6f0d9ee71c0b00913fd Mon Sep 17 00:00:00 2001 From: millerm30 Date: Mon, 22 Dec 2025 15:50:34 -0330 Subject: [PATCH 2/2] Update Node.js version in GitHub Actions workflows from 18 to 20 --- .github/workflows/actions.yml | 2 +- .github/workflows/pullRequests.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 43ee115..d097942 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -23,7 +23,7 @@ jobs: uses: actions/cache@v4 with: path: node_modules - key: 18.x-${{ runner.OS }}-build-${{ hashFiles('package.json') }} + key: 20.x-${{ runner.OS }}-build-${{ hashFiles('package.json') }} - name: NPM Install if: steps.cache-modules.outputs.cache-hit != 'true' diff --git a/.github/workflows/pullRequests.yml b/.github/workflows/pullRequests.yml index 996c244..80b3348 100644 --- a/.github/workflows/pullRequests.yml +++ b/.github/workflows/pullRequests.yml @@ -15,14 +15,14 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 - name: Cache node_modules id: cache-modules uses: actions/cache@v4 with: path: node_modules - key: 18.x-${{ runner.OS }}-build-${{ hashFiles('package.json') }} + key: 20.x-${{ runner.OS }}-build-${{ hashFiles('package.json') }} - name: Install Dependencies if: steps.cache-modules.outputs.cache-hit != 'true'