diff options
author | dirkf <fieldhouse@gmx.net> | 2023-06-22 17:24:48 +0100 |
---|---|---|
committer | dirkf <fieldhouse@gmx.net> | 2023-06-22 23:12:22 +0100 |
commit | ebdc82c58684b4e202fabc046f9a40fc73cccde5 (patch) | |
tree | feed23de5b04859ab241b6c16fb7a43845bb9da7 | |
parent | 9112e668a5ea6376017718db9ff13b369d53ad7a (diff) |
[workflows/ci.yml] Replace actions/setup-python for legacy Pythons
Thanks MatteoH2O1999: https://github.com/MatteoH2O1999/setup-python
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 51abdce1d..9be4eaa89 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,10 +38,12 @@ jobs: steps: - uses: actions/checkout@v3 - name: Set up supported Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - if: ${{ matrix.python-impl == 'cpython' && ! contains(fromJSON('["3.3", "3.4"]'), matrix.python-version) }} + # wrap broken actions/setup-python@v4 + uses: ytdl-org/setup-python@v1 with: python-version: ${{ matrix.python-version }} + cache-build: true + allow-build: info - name: Set up Java 8 if: ${{ matrix.python-impl == 'jython' }} uses: actions/setup-java@v2 |