Skip to content

Commit

Permalink
chore(deps): update all dependencies (#634)
Browse files Browse the repository at this point in the history
* 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 <partheniou@google.com>
  • Loading branch information
3 people committed Apr 29, 2024
1 parent 828ffe1 commit 07dfc93
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ jobs:
run: |
nox -s unit${{ matrix.option }}-${{ matrix.python }}
- name: Upload coverage results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-artifacts
name: coverage-artifact-${{ matrix.option }}-${{ matrix.python }}
path: .coverage${{ matrix.option }}-${{ matrix.python }}

report-coverage:
Expand All @@ -65,11 +65,11 @@ jobs:
python -m pip install --upgrade setuptools pip wheel
python -m pip install coverage
- name: Download coverage results
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage-artifacts
path: .coverage-results/
- name: Report coverage results
run: |
coverage combine .coverage-results/.coverage*
find .coverage-results -type f -name '*.zip' -exec unzip {} \;
coverage combine .coverage-results/**/.coverage*
coverage report --show-missing --fail-under=100
6 changes: 3 additions & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,12 +175,12 @@ def pytype(session):
def mypy(session):
"""Run type-checking."""
session.install(".[grpc]", "mypy")
# Exclude types-protobuf==4.24.0.20240106
# See https://github.com/python/typeshed/issues/11254
session.install(
"types-setuptools",
"types-requests",
"types-protobuf!=4.24.0.20240106",
# TODO(https://github.com/googleapis/python-api-core/issues/642):
# Use the latest version of types-protobuf.
"types-protobuf<5",
"types-mock",
"types-dataclasses",
)
Expand Down

0 comments on commit 07dfc93

Please sign in to comment.