23
23
runs-on : " ubuntu-20.04"
24
24
continue-on-error : ${{ matrix.config.experimental }}
25
25
env :
26
- USING_COVERAGE : ' 3.6,3.7,3.8,3.9,3.10,3.11.0-rc.1 '
26
+ USING_COVERAGE : ' 3.6,3.7,3.8,3.9,3.10,3.11'
27
27
28
28
strategy :
29
29
fail-fast : False
@@ -34,11 +34,11 @@ jobs:
34
34
- {python-version: "3.8", testenvs: "py38-click{7,8},build", experimental: False}
35
35
- {python-version: "3.9", testenvs: "py39-click{7,8},build", experimental: False}
36
36
- {python-version: "3.10", testenvs: "py310-click{7,8},build", experimental: False}
37
- - {python-version: "3.11.0-rc.1 ", testenvs: "py311-dev-click{7,8},build", experimental: True}
37
+ - {python-version: "3.11", testenvs: "py311-dev-click{7,8},build", experimental: True}
38
38
39
39
steps :
40
40
- name : Checkout 🛎️
41
- uses : " actions/checkout@v2 "
41
+ uses : " actions/checkout@v3 "
42
42
43
43
- name : Check for changed files
44
44
if : startsWith(github.ref, 'refs/tags/') != true
53
53
- name : Setup Python 🐍
54
54
id : setup-python
55
55
if : ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
56
- uses : " actions/setup-python@v2 "
56
+ uses : " actions/setup-python@v4 "
57
57
with :
58
58
python-version : " ${{ matrix.config.python-version }}"
59
59
@@ -83,10 +83,10 @@ jobs:
83
83
runs-on : " ubuntu-20.04"
84
84
steps :
85
85
- name : Checkout 🛎️
86
- uses : " actions/checkout@v2 "
86
+ uses : " actions/checkout@v3 "
87
87
88
88
- name : Setup Python 🐍
89
- uses : " actions/setup-python@v2 "
89
+ uses : " actions/setup-python@v4 "
90
90
with :
91
91
python-version : 3.8
92
92
@@ -132,11 +132,11 @@ jobs:
132
132
runs-on : " ubuntu-20.04"
133
133
steps :
134
134
- name : Checkout 🛎️
135
- uses : " actions/checkout@v2 "
135
+ uses : " actions/checkout@v3 "
136
136
if : startsWith(github.ref, 'refs/tags/')
137
137
138
138
- name : Setup Python 🐍
139
- uses : " actions/setup-python@v2 "
139
+ uses : " actions/setup-python@v4 "
140
140
if : startsWith(github.ref, 'refs/tags/')
141
141
with :
142
142
python-version : 3.8
0 commit comments