Skip to content

Commit

Permalink
Merge pull request #69 from ewjoachim/dependabot/github_actions/dot-g…
Browse files Browse the repository at this point in the history
…ithub/workflows/actions/download-artifact-4.1.7
  • Loading branch information
ewjoachim authored Sep 4, 2024
2 parents c32a62c + 2e92187 commit df4f753
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,11 @@ jobs:
COVERAGE_FILE: ".coverage.${{ matrix.python-version }}"

- name: Store coverage file
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage
name: coverage-${{ matrix.python-version }}
path: .coverage.${{ matrix.python-version }}
include-hidden-files: true

report-status:
name: success
Expand All @@ -68,10 +69,11 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
id: download
with:
name: "coverage"
name: "coverage-*"
merge-multiple: true

- name: Display coverage
uses: ewjoachim/python-coverage-comment-action@v3
Expand Down

0 comments on commit df4f753

Please sign in to comment.