5252 steps :
5353 - name : Checkout
5454 # see https://github.com/actions/checkout
55- uses : actions/checkout@v5
55+ uses : actions/checkout@v6
5656 - name : Setup Python Environment
5757 # see https://github.com/actions/setup-python
5858 uses : actions/setup-python@v6
7575 steps :
7676 - name : Checkout
7777 # see https://github.com/actions/checkout
78- uses : actions/checkout@v5
78+ uses : actions/checkout@v6
7979 - name : Setup Python Environment
8080 # see https://github.com/actions/setup-python
8181 uses : actions/setup-python@v6
9898 steps :
9999 - name : Checkout
100100 # see https://github.com/actions/checkout
101- uses : actions/checkout@v5
101+ uses : actions/checkout@v6
102102 - name : Setup Python Environment
103103 # see https://github.com/actions/setup-python
104104 uses : actions/setup-python@v6
@@ -131,7 +131,7 @@ jobs:
131131 steps :
132132 - name : Checkout
133133 # see https://github.com/actions/checkout
134- uses : actions/checkout@v5
134+ uses : actions/checkout@v6
135135 - name : Setup Python Environment
136136 # see https://github.com/actions/setup-python
137137 uses : actions/setup-python@v6
@@ -154,7 +154,7 @@ jobs:
154154 steps :
155155 - name : Checkout
156156 # see https://github.com/actions/checkout
157- uses : actions/checkout@v5
157+ uses : actions/checkout@v6
158158 - name : Setup Python Environment
159159 # see https://github.com/actions/setup-python
160160 uses : actions/setup-python@v6
@@ -187,7 +187,7 @@ jobs:
187187 steps :
188188 - name : Checkout
189189 # see https://github.com/actions/checkout
190- uses : actions/checkout@v5
190+ uses : actions/checkout@v6
191191 - name : Setup Python Environment
192192 # see https://github.com/actions/setup-python
193193 uses : actions/setup-python@v6
@@ -217,21 +217,14 @@ jobs:
217217 - " 3.10"
218218 - " 3.9" # lowest supported -- handled in include
219219 exclude :
220- - os : macos-latest
220+ - os : macos-latest # macos-latest is incompatible with some PY versions
221221 python-version : " 3.10"
222- - os : macos-latest
222+ - os : macos-latest # macos-latest is incompatible with some PY versions
223223 python-version : " 3.9"
224- include :
225- - os : macos-13
226- python-version : " 3.10"
227- unittest-args : []
228- - os : macos-13
229- python-version : " 3.9"
230- unittest-args : []
231224 steps :
232225 - name : Checkout
233226 # see https://github.com/actions/checkout
234- uses : actions/checkout@v5
227+ uses : actions/checkout@v6
235228 - name : Create reports directory
236229 run : mkdir ${{ env.REPORTS_DIR }}
237230 - name : Setup Python Environment
@@ -269,7 +262,7 @@ jobs:
269262 - name : Artifact reports
270263 if : ${{ ! cancelled() }}
271264 # see https://github.com/actions/upload-artifact
272- uses : actions/upload-artifact@v5
265+ uses : actions/upload-artifact@v6
273266 with :
274267 name : ' ${{ env.TESTS_REPORTS_ARTIFACT }}_bnt_${{ matrix.os }}_py${{ matrix.python-version }}'
275268 path : ${{ env.REPORTS_DIR }}
@@ -283,7 +276,7 @@ jobs:
283276 steps :
284277 - name : fetch test artifacts
285278 # see https://github.com/actions/download-artifact
286- uses : actions/download-artifact@v6
279+ uses : actions/download-artifact@v7
287280 with :
288281 pattern : ' ${{ env.TESTS_REPORTS_ARTIFACT }}_bnt_*'
289282 merge-multiple : true
0 commit comments