Skip to content

Commit 2a561a6

Browse files
renovate-botgcf-owl-bot[bot]parthea
authored
chore(deps): update all dependencies (#382)
* chore(deps): update all dependencies * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * revert * See googleapis/synthtool#1910 * fix syntax --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Anthonios Partheniou <[email protected]>
1 parent c220b45 commit 2a561a6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/unittest.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
run: |
2727
nox -s unit-${{ matrix.python }}
2828
- name: Upload coverage results
29-
uses: actions/upload-artifact@v3
29+
uses: actions/upload-artifact@v4
3030
with:
31-
name: coverage-artifacts
31+
name: coverage-artifact-${{ matrix.python }}
3232
path: .coverage-${{ matrix.python }}
3333
include-hidden-files: true
3434

@@ -48,11 +48,11 @@ jobs:
4848
python -m pip install --upgrade setuptools pip wheel
4949
python -m pip install coverage
5050
- name: Download coverage results
51-
uses: actions/download-artifact@v3
51+
uses: actions/download-artifact@v4
5252
with:
53-
name: coverage-artifacts
5453
path: .coverage-results/
5554
- name: Report coverage results
5655
run: |
57-
coverage combine .coverage-results/.coverage*
56+
find .coverage-results -type f -name '*.zip' -exec unzip {} \;
57+
coverage combine .coverage-results/**/.coverage*
5858
coverage report --show-missing --fail-under=99

0 commit comments

Comments
 (0)