diff options
| author | Marco Rodolfi <marco.rodolfi@tuta.io> | 2023-07-27 09:38:32 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-27 09:38:32 +0200 |
| commit | 3ae4ceb431b658372fda5172d008ec61fd5d25be (patch) | |
| tree | 2b38a354d2b10ecb1bad3e8febf9189fa3b9b4df | |
| parent | 7a725935fc456c45546761cefaf2abcaab749fb6 (diff) | |
| download | decky-loader-3ae4ceb431b658372fda5172d008ec61fd5d25be.tar.gz decky-loader-3ae4ceb431b658372fda5172d008ec61fd5d25be.zip | |
Switch back to Python 3.10 in order to avoid library dependency hell
| -rw-r--r-- | .github/workflows/build.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a32efca2..aa378917 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,7 +31,7 @@ permissions: jobs: build: name: Build PluginLoader - runs-on: ubuntu-22.10 + runs-on: ubuntu-22.04 steps: - name: Print input @@ -47,10 +47,10 @@ jobs: with: node-version: 18 - - name: Set up Python 3.11.4 🐍 + - name: Set up Python 3.10.12 🐍 uses: actions/setup-python@v4 with: - python-version: "3.11.4" + python-version: "3.10.12" - name: Install Python dependencies ⬇️ run: | @@ -97,10 +97,10 @@ jobs: with: node-version: 18 - - name: Set up Python 3.11.4 🐍 + - name: Set up Python 3.10.12 🐍 uses: actions/setup-python@v4 with: - python-version: "3.11.4" + python-version: "3.10.12" - name: Install Python dependencies ⬇️ run: | |
