88 runs-on : ubuntu-latest
99 strategy :
1010 matrix :
11- python-version : ["3.9", "3.10", "3. 11", "3.12 "]
11+ python-version : ["3.9", "3.11", "3.x "]
1212
1313 steps :
1414 - name : 🛒 Checkout repository
1717 fetch-depth : 0
1818
1919 - name : 🐍 Set up Python ${{ matrix.python-version }}
20- uses : actions/setup-python@v4
20+ uses : actions/setup-python@v5
2121 with :
2222 python-version : ${{ matrix.python-version }}
2323 architecture : ' x64'
3131 run : pytest --doctest-modules --junitxml=junit/test-results-${{ matrix.python-version }}.xml
3232
3333 - name : 🚀 Upload pytest test results
34- uses : actions/upload-artifact@v3
34+ uses : actions/upload-artifact@v4
3535 with :
3636 name : pytest-results-${{ matrix.python-version }}
3737 path : junit/test-results-${{ matrix.python-version }}.xml
@@ -42,15 +42,15 @@ jobs:
4242 runs-on : ubuntu-latest
4343 strategy :
4444 matrix :
45- python-version : ["3.9", "3.10", "3. 11", "3.12 "]
45+ python-version : ["3.9", "3.11", "3.x "]
4646 steps :
4747 - name : 🛒 Checkout repository
4848 uses : actions/checkout@v4
4949 with :
5050 fetch-depth : 0
5151
5252 - name : 🐍 Set up Python ${{ matrix.python-version }}
53- uses : actions/setup-python@v4
53+ uses : actions/setup-python@v5
5454 with :
5555 python-version : ${{ matrix.python-version }}
5656
0 commit comments