From 3ede4217076900f0f707ff0b253a2a0a557cc2a9 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Thu, 4 Sep 2025 09:53:32 -0400 Subject: [PATCH 1/2] Use nodejs 18 --- .forgejo/workflows/release-build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/release-build.yaml b/.forgejo/workflows/release-build.yaml index f279cd9..2999cd2 100644 --- a/.forgejo/workflows/release-build.yaml +++ b/.forgejo/workflows/release-build.yaml @@ -19,7 +19,7 @@ jobs: apt-get update apt-get install -y git make g++ bzip2 sudo patch python2 curl lsb-release p7zip-full qtbase5-dev debhelper clang-14 lld-14 # node version set in build_tools/scripts/build_server variable pkg_target - curl -sL https://deb.nodesource.com/setup_16.x | bash - + curl -sL https://deb.nodesource.com/setup_18.x | bash - apt-get install -y nodejs npm install -g pkg grunt grunt-cli - name: Getting patches From 1bc8990bd67f094d9e7ba7476d1f189f5def81e6 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Thu, 4 Sep 2025 10:02:00 -0400 Subject: [PATCH 2/2] ci: do not install pkg manually --- .forgejo/workflows/release-build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/release-build.yaml b/.forgejo/workflows/release-build.yaml index 2999cd2..8172a45 100644 --- a/.forgejo/workflows/release-build.yaml +++ b/.forgejo/workflows/release-build.yaml @@ -21,7 +21,7 @@ jobs: # node version set in build_tools/scripts/build_server variable pkg_target curl -sL https://deb.nodesource.com/setup_18.x | bash - apt-get install -y nodejs - npm install -g pkg grunt grunt-cli + npm install -g grunt grunt-cli - name: Getting patches uses: actions/checkout@v4 - name: Fetching sources