From 6d027a35c1b7d46f9165c53e57b87bd9059d9ecf Mon Sep 17 00:00:00 2001 From: alexey semenyuk Date: Tue, 14 Oct 2025 22:27:18 +0300 Subject: [PATCH 1/4] Update GitHub Actions to use latest versions Signed-off-by: alexey semenyuk --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2357bdc..1912bc7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,10 +9,10 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Setup node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: 14.x + node-version: 24.x - run: npm i - run: npm run build From c72443206aefe1f80ced10076d09b6892f9c715a Mon Sep 17 00:00:00 2001 From: alexey semenyuk Date: Tue, 14 Oct 2025 22:28:03 +0300 Subject: [PATCH 2/4] Update GitHub Actions to use latest versions Signed-off-by: alexey semenyuk --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ce93230..172fcc0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,11 +9,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Setup node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: 14.x + node-version: 24.x - run: npm i - run: PUBLIC_URL="/ui" npm run build - name: Set outputs From 4af6536b940778db27304408231d71e3f6197000 Mon Sep 17 00:00:00 2001 From: alexey semenyuk Date: Thu, 23 Oct 2025 00:11:42 +0500 Subject: [PATCH 3/4] Back Node version Signed-off-by: alexey semenyuk --- .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 1912bc7..144cbfa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,6 +13,6 @@ jobs: - name: Setup node.js uses: actions/setup-node@v6 with: - node-version: 24.x + node-version: 14.x - run: npm i - run: npm run build From c17c19e3ed6dd79d96b291526e88e00e9b9bce9d Mon Sep 17 00:00:00 2001 From: alexey semenyuk Date: Thu, 23 Oct 2025 00:12:22 +0500 Subject: [PATCH 4/4] Back Node version Signed-off-by: alexey semenyuk --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 172fcc0..117a0f7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: - name: Setup node.js uses: actions/setup-node@v6 with: - node-version: 24.x + node-version: 14.x - run: npm i - run: PUBLIC_URL="/ui" npm run build - name: Set outputs