diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2022-04-11 13:54:36 +0000 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-04-12 14:01:31 -0700 |
commit | b723bedd8a988315fa4cfaf3ccf91bf6b6e0807b (patch) | |
tree | 8a64a7a874b510ff9fc9cc106255a575133512a1 | |
parent | a0c7ee45371778ac71abd1ce90a79113d4819d56 (diff) | |
download | python-coveragepy-git-b723bedd8a988315fa4cfaf3ccf91bf6b6e0807b.tar.gz |
build(deps): bump actions/download-artifact from 2 to 3
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 2 to 3.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/v2...v3)
---
updated-dependencies:
- dependency-name: actions/download-artifact
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
-rw-r--r-- | .github/workflows/coverage.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index add577cd..cf1516d5 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -108,7 +108,7 @@ jobs: python igor.py zip_mods - name: "Download coverage data" - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: name: metacov @@ -153,7 +153,7 @@ jobs: git checkout main - name: "Download coverage JSON report" - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: name: json_report @@ -179,7 +179,7 @@ jobs: if (($PCTINT < 60)); then echo "badge_color=red"; fi >> $GITHUB_ENV - name: "Download coverage HTML report" - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: name: html_report path: reports_repo/${{ env.report_dir }} |