Skip to content

Commit 05ec9a1

Browse files
chore(deps): update all dependencies to v4 (googleapis#12133)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/download-artifact](https://togithub.com/actions/download-artifact) | action | major | `v3` -> `v4` | | [actions/upload-artifact](https://togithub.com/actions/upload-artifact) | action | major | `v3` -> `v4` | --- ### Release Notes <details> <summary>actions/download-artifact (actions/download-artifact)</summary> ### [`v4`](https://togithub.com/actions/download-artifact/compare/v3...v4) [Compare Source](https://togithub.com/actions/download-artifact/compare/v3...v4) </details> <details> <summary>actions/upload-artifact (actions/upload-artifact)</summary> ### [`v4`](https://togithub.com/actions/upload-artifact/compare/v3...v4) [Compare Source](https://togithub.com/actions/upload-artifact/compare/v3...v4) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/googleapis/google-cloud-python). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy45My4xIiwidXBkYXRlZEluVmVyIjoiMzcuOTMuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> --------- Co-authored-by: Anthonios Partheniou <partheniou@google.com>
1 parent 48d42fd commit 05ec9a1

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/unittest.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ jobs:
3838
run: |
3939
ci/run_conditional_tests.sh
4040
- name: Upload coverage results
41-
uses: actions/upload-artifact@v3
41+
uses: actions/upload-artifact@v4
4242
with:
43-
name: coverage-artifacts
43+
name: coverage-artifact-${{ '{{' }} matrix.python {{ '}}' }}
4444
path: .coverage-${{ matrix.python }}
4545
prerelease:
4646
runs-on: ubuntu-latest
@@ -97,12 +97,12 @@ jobs:
9797
python -m pip install coverage
9898
- name: Download coverage results
9999
if: ${{ steps.date.packages.num_files_changed > 0 }}
100-
uses: actions/download-artifact@v3
100+
uses: actions/download-artifact@v4
101101
with:
102-
name: coverage-artifacts
103102
path: .coverage-results/
104103
- name: Report coverage results
105104
if: ${{ steps.date.packages.num_files_changed > 0 }}
106105
run: |
107-
coverage combine .coverage-results/.coverage*
106+
find .coverage-results -type f -name '*.zip' -exec unzip {} \;
107+
coverage combine .coverage-results/**/.coverage*
108108
coverage report --show-missing --fail-under=100

0 commit comments

Comments
 (0)