Skip to content

Commit

Permalink
Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows (#…
Browse files Browse the repository at this point in the history
…137)

* Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.1.7.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v3...v4.1.7)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* Also bump upload-artifact to v4

* Debug pipeline

* pipeline

* Add include-hidden-files to upload-artifact

* Actually fix pipeline?

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Peter Lazorchak <[email protected]>
  • Loading branch information
dependabot[bot] and lazorchakp authored Sep 5, 2024
1 parent abc0b52 commit c9a22f4
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,12 @@ jobs:
TOX_COV_SUFFIX: py${{ matrix.python-version }}
run: tox -e pytest
- name: Upload coverage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: .coverage.py${{ matrix.python-version }}
path: .coverage.py${{ matrix.python-version }}
include-hidden-files: true
if-no-files-found: error

coverage:
needs: test
Expand All @@ -71,8 +74,8 @@ jobs:
python -m pip install --upgrade pip
pip install coverage
- name: Download coverage results
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
- name: Compute coverage
run: |
coverage combine artifact/
coverage combine .coverage.py*
coverage report -i -m --fail-under=100

0 comments on commit c9a22f4

Please sign in to comment.