Skip to content

Commit cd6f2bb

Browse files
chore(deps): update all dependencies (#419)
* chore(deps): update all dependencies * See googleapis/synthtool#1910 * See googleapis/synthtool#1910 --------- Co-authored-by: Anthonios Partheniou <partheniou@google.com>
1 parent 2293d30 commit cd6f2bb

File tree

1 file changed

+5
-5
lines changed
  • packages/proto-plus/.github/workflows

1 file changed

+5
-5
lines changed

packages/proto-plus/.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ jobs:
7070
run: |
7171
nox -s unit${{ matrix.variant }}-${{ env.PYTHON_VERSION_TRIMMED }}
7272
- name: Upload coverage results
73-
uses: actions/upload-artifact@v3
73+
uses: actions/upload-artifact@v4
7474
with:
75-
name: coverage-artifacts
75+
name: coverage-artifact-${{ matrix.variant }}-${{ env.PYTHON_VERSION_TRIMMED }}
7676
path: .coverage-${{ matrix.variant }}-${{ env.PYTHON_VERSION_TRIMMED }}
7777
cover:
7878
runs-on: ubuntu-latest
@@ -90,11 +90,11 @@ jobs:
9090
python -m pip install --upgrade setuptools pip wheel
9191
python -m pip install coverage
9292
- name: Download coverage results
93-
uses: actions/download-artifact@v3
93+
uses: actions/download-artifact@v4
9494
with:
95-
name: coverage-artifacts
9695
path: .coverage-results/
9796
- name: Report coverage results
9897
run: |
99-
coverage combine .coverage-results/.coverage*
98+
find .coverage-results -type f -name '*.zip' -exec unzip {} \;
99+
coverage combine .coverage-results/**/.coverage*
100100
coverage report --show-missing --fail-under=100

0 commit comments

Comments
 (0)