Use Python 3.10 in GitHub workflow

Python 3.11 breaks the gyp-next pip package which is used in the build
process to compile nss. It seems that gyp-next has no updated version to
fix that. Use Python 3.10 instead as a temporary fix.
This commit is contained in:
lwthiker
2022-11-14 11:23:01 +02:00
parent 094158f164
commit 50b13b1db5

View File

@@ -39,7 +39,9 @@ jobs:
capture_interface: en0
make: gmake
steps:
- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Ubuntu dependencies
if: matrix.os == 'ubuntu-20.04'