From 42e1777edf82e66b76ae83b6b481f47f19752de8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 13 Dec 2025 20:19:59 +0000 Subject: [PATCH 1/2] Initial plan From eb87d2de22a57d2c02ed5c9a6554c2d9611136d9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 13 Dec 2025 20:22:16 +0000 Subject: [PATCH 2/2] Fix Node.js version in packaging-and-deployment.yml from 16.x to 20.x Co-authored-by: StefRuseva88 <118391541+StefRuseva88@users.noreply.github.com> --- .github/workflows/packaging-and-deployment.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/packaging-and-deployment.yml b/.github/workflows/packaging-and-deployment.yml index b9b926b..b451f57 100644 --- a/.github/workflows/packaging-and-deployment.yml +++ b/.github/workflows/packaging-and-deployment.yml @@ -16,10 +16,10 @@ jobs: pull-requests: write steps: - uses: actions/checkout@v3 - - name: Use Node.js 16.x + - name: Use Node.js 20.x uses: actions/setup-node@v4 with: - node-version: 16.x + node-version: 20.x cache: npm - run: npm ci - run: npm run build --if-present