Skip to content

Commit 4749528

Browse files
authored
Merge branch 'main' into openapi-3.1
2 parents 7f6b5b9 + 1201a7d commit 4749528

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/checks.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ jobs:
6767
run: poetry run coverage xml -o coverage-${{ matrix.os }}-${{ matrix.python }}.xml
6868

6969
- name: Store coverage report
70-
uses: actions/upload-artifact@v3
70+
uses: actions/upload-artifact@v4.0.0
7171
with:
72-
name: coverage-report
72+
name: coverage-${{ matrix.os }}-${{ matrix.python }}
7373
path: coverage-${{ matrix.os }}-${{ matrix.python }}.xml
7474

7575
upload_coverage:
@@ -78,12 +78,12 @@ jobs:
7878
steps:
7979
- uses: actions/checkout@v4.1.1
8080
- name: Download coverage reports
81-
uses: actions/download-artifact@v3
81+
uses: actions/download-artifact@v4.0.0
8282
with:
83-
name: coverage-report
84-
- uses: codecov/codecov-action@v3
83+
path: coverage-report
84+
- uses: codecov/codecov-action@v3.1.4
8585
with:
86-
files: "*.xml"
86+
files: "coverage-report/**/*.xml"
8787

8888
integration:
8989
name: Integration Tests

0 commit comments

Comments
 (0)