From 9ad4797bff718ba63ca8e8f02fc56724ba9dd969 Mon Sep 17 00:00:00 2001 From: Jeffrey Alan Scudder Date: Mon, 26 Jan 2026 20:54:32 +0000 Subject: [PATCH] fix(electron): add Python 3.11 for node-gyp compatibility --- .github/workflows/electron-release.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/electron-release.yml b/.github/workflows/electron-release.yml index 3e8cc3378..4fb35c181 100644 --- a/.github/workflows/electron-release.yml +++ b/.github/workflows/electron-release.yml @@ -18,6 +18,11 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Setup Python (for node-gyp) + uses: actions/setup-python@v5 + with: + python-version: '3.11' + - name: Setup Node.js uses: actions/setup-node@v4 with: @@ -87,6 +92,11 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Setup Python (for node-gyp) + uses: actions/setup-python@v5 + with: + python-version: '3.11' + - name: Setup Node.js uses: actions/setup-node@v4 with: @@ -119,6 +129,11 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Setup Python (for node-gyp) + uses: actions/setup-python@v5 + with: + python-version: '3.11' + - name: Setup Node.js uses: actions/setup-node@v4 with: -- 2.51.2