@@ -23,17 +23,17 @@ jobs:
2323 runs-on : " ubuntu-20.04"
2424 continue-on-error : ${{ matrix.config.experimental }}
2525 env :
26- USING_COVERAGE : ' 3.6 '
26+ USING_COVERAGE : ' 3.8 '
2727
2828 strategy :
2929 fail-fast : False
3030 matrix :
3131 config :
32- - {python-version: "3.6 ", testenvs: "py36 ,build", experimental: False}
32+ - {python-version: "3.8 ", testenvs: "py38 ,build", experimental: False}
3333
3434 steps :
3535 - name : Checkout 🛎️
36- uses : " actions/checkout@v2 "
36+ uses : " actions/checkout@v3 "
3737
3838 - name : Check for changed files
3939 if : startsWith(github.ref, 'refs/tags/') != true
4848 - name : Setup Python 🐍
4949 id : setup-python
5050 if : ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
51- uses : " actions/setup-python@v2 "
51+ uses : " actions/setup-python@v4 "
5252 with :
5353 python-version : " ${{ matrix.config.python-version }}"
5454
5858 python -VV
5959 python -m site
6060 python -m pip install --upgrade pip setuptools wheel
61- python -m pip install --upgrade tox virtualenv!=20.16.0
61+ python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
6262
6363 - name : " Run Tests for Python ${{ matrix.config.python-version }}"
6464 if : steps.setup-python.outcome == 'success'
@@ -72,11 +72,11 @@ jobs:
7272 runs-on : " ubuntu-20.04"
7373 steps :
7474 - name : Checkout 🛎️
75- uses : " actions/checkout@v2 "
75+ uses : " actions/checkout@v3 "
7676 if : startsWith(github.ref, 'refs/tags/')
7777
7878 - name : Setup Python 🐍
79- uses : " actions/setup-python@v2 "
79+ uses : " actions/setup-python@v4 "
8080 if : startsWith(github.ref, 'refs/tags/')
8181 with :
8282 python-version : 3.8
8585 if : startsWith(github.ref, 'refs/tags/')
8686 run : |
8787 python -m pip install --upgrade pip setuptools wheel
88- python -m pip install --upgrade tox
88+ python -m pip install --upgrade tox~=3.0
8989
9090 - name : Build distributions 📦
9191 if : startsWith(github.ref, 'refs/tags/')
0 commit comments