Merge pull request #124 from sinaatalay/dependabot/github_actions/actions/upload-artifact-4

build(deps): bump actions/upload-artifact from 3 to 4
This commit is contained in:
Sina Atalay
2024-07-13 18:36:47 +03:00
committed by GitHub

View File

@@ -61,9 +61,9 @@ jobs:
mv .coverage .coverage.${{ matrix.python-version }}.${{ matrix.os }}
- name: Store coverage files
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage
name: coverage-${{ matrix.python-version }}-${{ matrix.os }}
path: .coverage.${{ matrix.python-version }}.${{ matrix.os }}
report-coverage:
@@ -84,8 +84,9 @@ jobs:
- name: Download coverage files
uses: actions/download-artifact@v4
with:
name: coverage
pattern: coverage-* # download all the uploaded coverage reports
path: coverage
merge-multiple: true # download them in the same folder
- name: Install Hatch
uses: pypa/hatch@install