Skip to content

Commit

Permalink
Fix: pin python to 3.11 for nodejs/node-gyp#2869
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasfinlay committed Dec 4, 2023
1 parent 106c678 commit 2820ef2
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/electron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
permissions:
contents: write

env:
PYTHON_VERSION: "3.11"

jobs:
publish:
runs-on: ${{ matrix.os }}
Expand All @@ -18,10 +21,15 @@ jobs:

steps:
- name: Check out Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}

- name: Setup Node.js environment
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16

Expand Down

0 comments on commit 2820ef2

Please sign in to comment.