Skip to content

Commit ebcc604

Browse files
authored
Merge pull request #793 from twisted/upgrade-upload-artifact
Fix CI failures on trunk (and every PR))
2 parents 47cda03 + 7ff8df4 commit ebcc604

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/cicd.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -193,18 +193,18 @@ jobs:
193193
strategy:
194194
matrix:
195195
os: ["ubuntu-latest"]
196-
python-version: ["3.7", "3.9", "3.10", "3.11"]
196+
python-version: ["3.8", "3.9", "3.10", "3.11"]
197197
twisted-version: ["21.2", "22.1", "23.8"]
198198
tox-prefix: ["coverage"]
199199
optional: [false]
200200
include:
201201
- os: "ubuntu-latest"
202-
python-version: "pypy-3.8"
202+
python-version: "pypy-3.9"
203203
twisted-version: "23.8"
204204
tox-prefix: "test"
205205
optional: false
206206
- os: "ubuntu-latest"
207-
python-version: "pypy-3.9"
207+
python-version: "pypy-3.10"
208208
twisted-version: "23.8"
209209
tox-prefix: "test"
210210
optional: false
@@ -266,9 +266,9 @@ jobs:
266266

267267
- name: Upload Trial log artifact
268268
if: ${{ failure() }}
269-
uses: actions/upload-artifact@v3
269+
uses: actions/upload-artifact@v4
270270
with:
271-
name: trial
271+
name: "trial-py${{ matrix.python-version }}-twisted${{ matrix.twisted-version }}-os${{ matrix.os }}"
272272
path: .tox/${TOX_ENV}/log/trial.log
273273

274274
# Use the latest supported Python version for combining coverage to

0 commit comments

Comments
 (0)