Skip to content

Commit 07dfc93

Browse files
renovate-botgcf-owl-bot[bot]parthea
authored
chore(deps): update all dependencies (#634)
* 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 * See https://github.com/googleapis/synthtool/pull/1910/files * fix artifact name * remove space * See #642 --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Anthonios Partheniou <[email protected]>
1 parent 828ffe1 commit 07dfc93

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/unittest.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ jobs:
4343
run: |
4444
nox -s unit${{ matrix.option }}-${{ matrix.python }}
4545
- name: Upload coverage results
46-
uses: actions/upload-artifact@v3
46+
uses: actions/upload-artifact@v4
4747
with:
48-
name: coverage-artifacts
48+
name: coverage-artifact-${{ matrix.option }}-${{ matrix.python }}
4949
path: .coverage${{ matrix.option }}-${{ matrix.python }}
5050

5151
report-coverage:
@@ -65,11 +65,11 @@ jobs:
6565
python -m pip install --upgrade setuptools pip wheel
6666
python -m pip install coverage
6767
- name: Download coverage results
68-
uses: actions/download-artifact@v3
68+
uses: actions/download-artifact@v4
6969
with:
70-
name: coverage-artifacts
7170
path: .coverage-results/
7271
- name: Report coverage results
7372
run: |
74-
coverage combine .coverage-results/.coverage*
73+
find .coverage-results -type f -name '*.zip' -exec unzip {} \;
74+
coverage combine .coverage-results/**/.coverage*
7575
coverage report --show-missing --fail-under=100

noxfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,12 +175,12 @@ def pytype(session):
175175
def mypy(session):
176176
"""Run type-checking."""
177177
session.install(".[grpc]", "mypy")
178-
# Exclude types-protobuf==4.24.0.20240106
179-
# See https://github.com/python/typeshed/issues/11254
180178
session.install(
181179
"types-setuptools",
182180
"types-requests",
183-
"types-protobuf!=4.24.0.20240106",
181+
# TODO(https://github.com/googleapis/python-api-core/issues/642):
182+
# Use the latest version of types-protobuf.
183+
"types-protobuf<5",
184184
"types-mock",
185185
"types-dataclasses",
186186
)

0 commit comments

Comments
 (0)