Skip to content

Commit 3436a2b

Browse files
committed
1 parent 8826d07 commit 3436a2b

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
FORCE_COLOR: 1
3030
POLYCOTYLUS_VERBOSITY: 1
3131
steps:
32-
- uses: actions/checkout@v3
33-
- uses: actions/setup-python@v4
32+
- uses: actions/checkout@v4
33+
- uses: actions/setup-python@v5
3434
with:
3535
python-version: ${{ matrix._.python }}
3636

@@ -62,22 +62,23 @@ jobs:
6262
- run: polycotylus --configure docker=${{ matrix._.docker }}
6363
- run: pytest --cov-fail-under=0 -sv ${{ matrix.suite }}
6464
- run: mv .coverage .coverage-$(uuidgen)
65-
- uses: actions/upload-artifact@v3
65+
- uses: actions/upload-artifact@v4
6666
with:
67-
name: coverage
67+
name: coverage-${{ strategy.job-index }}
6868
path: .coverage-*
6969

7070
coverage:
7171
runs-on: ubuntu-latest
7272
needs: main
7373
steps:
74-
- uses: actions/checkout@v3
75-
- uses: actions/setup-python@v4
74+
- uses: actions/checkout@v4
75+
- uses: actions/setup-python@v5
7676
with:
7777
python-version: 3.12 # must match latest version tested against
7878
- run: pip install coverage
79-
- uses: actions/download-artifact@v3
79+
- uses: actions/download-artifact@v4
8080
with:
81-
name: coverage
81+
pattern: coverage-*
82+
merge-multiple: true
8283
- run: coverage combine .coverage-*
8384
- run: coverage report

0 commit comments

Comments
 (0)