2323 runs-on : " ubuntu-20.04"
2424 continue-on-error : ${{ matrix.config.experimental }}
2525 env :
26- USING_COVERAGE : ' 3.6,3.7,3.8,3.9,3.10,3.11.0-rc.2 ,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
26+ USING_COVERAGE : ' 3.6,3.7,3.8,3.9,3.10,3.11,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
2727
2828 strategy :
2929 fail-fast : False
@@ -34,15 +34,15 @@ jobs:
3434 - {python-version: "3.8", testenvs: "py38,build", experimental: False}
3535 - {python-version: "3.9", testenvs: "py39,build", experimental: False}
3636 - {python-version: "3.10", testenvs: "py310,build", experimental: False}
37- - {python-version: "3.11.0-rc.2 ", testenvs: "py311-dev,build", experimental: True}
37+ - {python-version: "3.11", testenvs: "py311-dev,build", experimental: True}
3838 - {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
3939 - {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
4040 - {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: True}
4141 - {python-version: "pypy-3.9", testenvs: "pypy39", experimental: True}
4242
4343 steps :
4444 - name : Checkout 🛎️
45- uses : " actions/checkout@v2 "
45+ uses : " actions/checkout@v3 "
4646
4747 - name : Check for changed files
4848 if : startsWith(github.ref, 'refs/tags/') != true
5757 - name : Setup Python 🐍
5858 id : setup-python
5959 if : ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
60- uses : " actions/setup-python@v2 "
60+ uses : " actions/setup-python@v4 "
6161 with :
6262 python-version : " ${{ matrix.config.python-version }}"
6363
7575 run : python -m tox -e "${{ matrix.config.testenvs }}" -s false
7676
7777 - name : " Upload Coverage 🚀"
78- uses : actions/upload-artifact@v2
78+ uses : actions/upload-artifact@v3
7979 if : ${{ always() && steps.setup-python.outcome == 'success' }}
8080 with :
8181 name : " coverage-${{ matrix.config.python-version }}"
@@ -87,10 +87,10 @@ jobs:
8787 runs-on : " ubuntu-20.04"
8888 steps :
8989 - name : Checkout 🛎️
90- uses : " actions/checkout@v2 "
90+ uses : " actions/checkout@v3 "
9191
9292 - name : Setup Python 🐍
93- uses : " actions/setup-python@v2 "
93+ uses : " actions/setup-python@v4 "
9494 with :
9595 python-version : 3.8
9696
@@ -100,7 +100,7 @@ jobs:
100100 python -m pip install --upgrade "coveralls>=3.0.0" coverage_pyver_pragma
101101
102102 - name : " Download Coverage 🪂"
103- uses : actions/download-artifact@v2
103+ uses : actions/download-artifact@v3
104104 with :
105105 path : coverage
106106
@@ -118,7 +118,7 @@ jobs:
118118
119119 - name : " Upload Combined Coverage Artefact 🚀"
120120 if : ${{ steps.show.outcome != 'failure' }}
121- uses : actions/upload-artifact@v2
121+ uses : actions/upload-artifact@v3
122122 with :
123123 name : " combined-coverage"
124124 path : .coverage
@@ -136,11 +136,11 @@ jobs:
136136 runs-on : " ubuntu-20.04"
137137 steps :
138138 - name : Checkout 🛎️
139- uses : " actions/checkout@v2 "
139+ uses : " actions/checkout@v3 "
140140 if : startsWith(github.ref, 'refs/tags/')
141141
142142 - name : Setup Python 🐍
143- uses : " actions/setup-python@v2 "
143+ uses : " actions/setup-python@v4 "
144144 if : startsWith(github.ref, 'refs/tags/')
145145 with :
146146 python-version : 3.8
@@ -181,10 +181,10 @@ jobs:
181181 if : startsWith(github.ref, 'refs/tags/') || (startsWith(github.event.head_commit.message, 'Bump version') != true)
182182 steps :
183183 - name : Checkout 🛎️
184- uses : " actions/checkout@v2 "
184+ uses : " actions/checkout@v3 "
185185
186186 - name : Setup Python 🐍
187- uses : " actions/setup-python@v2 "
187+ uses : " actions/setup-python@v4 "
188188 with :
189189 python-version : 3.8
190190
0 commit comments