Skip to content

Commit 5db90a6

Browse files
authored
Merge pull request #334 from TGSAI/ci/update_coverage_action
Bump actions/{upload,download}-artifact from 3 to 4
2 parents 51bd0bf + 74aa563 commit 5db90a6

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,14 +97,14 @@ jobs:
9797
9898
- name: Upload coverage data
9999
if: always() && matrix.session == 'tests'
100-
uses: "actions/upload-artifact@v3"
100+
uses: actions/upload-artifact@v4
101101
with:
102-
name: coverage-data
102+
name: coverage-data-${{ matrix.os }}-${{ matrix.python }}
103103
path: ".coverage.*"
104104

105105
- name: Upload documentation
106106
if: matrix.session == 'docs-build'
107-
uses: actions/upload-artifact@v3
107+
uses: actions/upload-artifact@v4
108108
with:
109109
name: docs
110110
path: docs/_build
@@ -138,9 +138,10 @@ jobs:
138138
nox --version
139139
140140
- name: Download coverage data
141-
uses: actions/download-artifact@v3
141+
uses: actions/download-artifact@v4
142142
with:
143-
name: coverage-data
143+
pattern: coverage-data-*
144+
merge-multiple: true
144145

145146
- name: Combine coverage data and display human readable report
146147
run: |

0 commit comments

Comments
 (0)