From 9a9022ffb06fdc8dd5edac40ba62f03e8e3db92b Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Fri, 5 Dec 2025 23:11:54 -0600 Subject: [PATCH] chore: update Python and Node.js versions in GitHub Actions workflow - Upgraded Python version to 3.13 for Windows, macOS, and Linux builds. - Updated Node.js version to 22 for Windows and Linux builds, while reverting to Node.js 18 for legacy builds on Windows and Linux. --- .github/workflows/build.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 95ad198..e6fb13e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -76,7 +76,7 @@ jobs: - name: windows os: windows-latest node: 22 - python: "3.12" + python: "3.13" release_artifacts: "dist/*-win-installer.exe,dist/*-win-portable.exe" build_input: build_windows dist_script: dist-prebuilt @@ -84,8 +84,8 @@ jobs: electron_version: "39.2.4" - name: mac os: macos-14 - node: 18 - python: "3.11" + node: 22 + python: "3.13" release_artifacts: "dist/*-mac-*.dmg" build_input: build_mac dist_script: dist:mac-universal @@ -94,7 +94,7 @@ jobs: - name: linux os: ubuntu-latest node: 22 - python: "3.12" + python: "3.13" release_artifacts: "dist/*-linux.AppImage,dist/*-linux.deb,python-dist/*.whl" build_input: build_linux dist_script: dist-prebuilt @@ -102,8 +102,8 @@ jobs: electron_version: "39.2.4" - name: windows-legacy os: windows-latest - node: 22 - python: "3.12" + node: 18 + python: "3.11" release_artifacts: "dist/*-win-installer*.exe,dist/*-win-portable*.exe" build_input: build_windows dist_script: dist-prebuilt @@ -111,8 +111,8 @@ jobs: electron_version: "30.0.8" - name: linux-legacy os: ubuntu-latest - node: 22 - python: "3.12" + node: 18 + python: "3.11" release_artifacts: "dist/*-linux*.AppImage,dist/*-linux*.deb,python-dist/*.whl" build_input: build_linux dist_script: dist-prebuilt