Skip to content

Commit cbb99f7

Browse files
committed
chore(deps): update all dependencies
1 parent d20dd28 commit cbb99f7

File tree

3 files changed

+61
-60
lines changed

3 files changed

+61
-60
lines changed

.github/workflows/tests.yaml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@ jobs:
5959
docs:
6060
runs-on: ubuntu-latest
6161
steps:
62-
- uses: actions/checkout@v5
62+
- uses: actions/checkout@v6
6363
- name: Set up Python
6464
uses: actions/setup-python@v6
6565
# Use python 3.10 for docs to match the version for the sphinx plugin
6666
# https://github.com/googleapis/synthtool/pull/1891
6767
with:
68-
python-version: "3.10"
68+
python-version: "3.14"
6969
cache: 'pip'
7070
- name: Install nox.
7171
run: python -m pip install nox
@@ -74,13 +74,13 @@ jobs:
7474
docfx:
7575
runs-on: ubuntu-latest
7676
steps:
77-
- uses: actions/checkout@v5
77+
- uses: actions/checkout@v6
7878
- name: Set up Python
7979
uses: actions/setup-python@v6
8080
# Use python 3.10 for docs to match the version for the sphinx plugin
8181
# https://github.com/googleapis/synthtool/pull/1891
8282
with:
83-
python-version: "3.10"
83+
python-version: "3.14"
8484
cache: 'pip'
8585
- name: Install nox.
8686
run: python -m pip install nox
@@ -98,7 +98,7 @@ jobs:
9898
- python: '3.7'
9999
runs-on: ubuntu-latest
100100
steps:
101-
- uses: actions/checkout@v5
101+
- uses: actions/checkout@v6
102102
- name: Set up Python "${{ matrix.python }}"
103103
uses: actions/setup-python@v6
104104
with:
@@ -121,9 +121,9 @@ jobs:
121121

122122
# TODO(https://github.com/googleapis/gapic-generator-python/issues/2303): use `ubuntu-latest` once this bug is fixed.
123123
# Use ubuntu-22.04 until Python 3.7 is removed from the test matrix
124-
runs-on: ubuntu-22.04
124+
runs-on: ubuntu-24.04
125125
steps:
126-
- uses: actions/checkout@v5
126+
- uses: actions/checkout@v6
127127
- name: Set up Python "${{ matrix.python }}"
128128
uses: actions/setup-python@v6
129129
with:
@@ -165,7 +165,7 @@ jobs:
165165
max-parallel: 1
166166
runs-on: ubuntu-latest
167167
steps:
168-
- uses: actions/checkout@v5
168+
- uses: actions/checkout@v6
169169
- name: Setup temp directory
170170
run: |
171171
sudo mkdir -p /tmp/workspace/tests/cert/
@@ -214,9 +214,9 @@ jobs:
214214

215215
# TODO(https://github.com/googleapis/gapic-generator-python/issues/2303): use `ubuntu-latest` once this bug is fixed.
216216
# Use ubuntu-22.04 until Python 3.7 is removed from the test matrix
217-
runs-on: ubuntu-22.04
217+
runs-on: ubuntu-24.04
218218
steps:
219-
- uses: actions/checkout@v5
219+
- uses: actions/checkout@v6
220220
- name: Set up Python "${{ matrix.python }}"
221221
uses: actions/setup-python@v6
222222
with:
@@ -245,7 +245,7 @@ jobs:
245245
showcase-unit-add-iam-methods:
246246
runs-on: ubuntu-latest
247247
steps:
248-
- uses: actions/checkout@v5
248+
- uses: actions/checkout@v6
249249
- name: Set up Python ${{ env.LATEST_STABLE_PYTHON }}
250250
uses: actions/setup-python@v6
251251
with:
@@ -273,7 +273,7 @@ jobs:
273273
matrix:
274274
variant: ['', _alternative_templates]
275275
steps:
276-
- uses: actions/checkout@v5
276+
- uses: actions/checkout@v6
277277
- name: Set up Python ${{ env.LATEST_STABLE_PYTHON }}
278278
uses: actions/setup-python@v6
279279
with:
@@ -299,7 +299,7 @@ jobs:
299299
needs: all_python_setup
300300
runs-on: ubuntu-latest
301301
steps:
302-
- uses: actions/checkout@v5
302+
- uses: actions/checkout@v6
303303
- name: Set up Python ${{ env.LATEST_STABLE_PYTHON }}
304304
uses: actions/setup-python@v6
305305
with:
@@ -320,9 +320,9 @@ jobs:
320320
python: ${{ fromJSON(needs.all_python_setup.outputs.all_python) }}
321321
# TODO(https://github.com/googleapis/gapic-generator-python/issues/2303): use `ubuntu-latest` once this bug is fixed.
322322
# Use ubuntu-22.04 until Python 3.7 is removed from the test matrix
323-
runs-on: ubuntu-22.04
323+
runs-on: ubuntu-24.04
324324
steps:
325-
- uses: actions/checkout@v5
325+
- uses: actions/checkout@v6
326326
- name: Set up Python ${{ matrix.python }}
327327
uses: actions/setup-python@v6
328328
with:
@@ -346,9 +346,9 @@ jobs:
346346
variant: ['', _alternative_templates]
347347
# TODO(https://github.com/googleapis/gapic-generator-python/issues/2303): use `ubuntu-latest` once this bug is fixed.
348348
# Use ubuntu-22.04 until Python 3.7 is removed from the test matrix
349-
runs-on: ubuntu-22.04
349+
runs-on: ubuntu-24.04
350350
steps:
351-
- uses: actions/checkout@v5
351+
- uses: actions/checkout@v6
352352
- name: Set up Python ${{ matrix.python }}
353353
uses: actions/setup-python@v6
354354
with:
@@ -368,10 +368,10 @@ jobs:
368368
runs-on: ubuntu-latest
369369
container: gcr.io/gapic-images/googleapis
370370
steps:
371-
- uses: actions/checkout@v5
371+
- uses: actions/checkout@v6
372372
- name: Cache Bazel files
373373
id: cache-bazel
374-
uses: actions/cache@v4
374+
uses: actions/cache@v5
375375
with:
376376
path: ~/.cache/bazel
377377
# Note: if the container is updated, the key needs to be updated as well.
@@ -396,7 +396,7 @@ jobs:
396396
goldens-lint:
397397
runs-on: ubuntu-latest
398398
steps:
399-
- uses: actions/checkout@v5
399+
- uses: actions/checkout@v6
400400
- name: Set up Python ${{ env.LATEST_STABLE_PYTHON }}
401401
uses: actions/setup-python@v6
402402
with:
@@ -415,7 +415,7 @@ jobs:
415415
goldens-unit:
416416
runs-on: ubuntu-latest
417417
steps:
418-
- uses: actions/checkout@v5
418+
- uses: actions/checkout@v6
419419
- name: Set up Python ${{ env.LATEST_STABLE_PYTHON }}
420420
uses: actions/setup-python@v6
421421
with:
@@ -436,7 +436,7 @@ jobs:
436436
goldens-prerelease:
437437
runs-on: ubuntu-latest
438438
steps:
439-
- uses: actions/checkout@v5
439+
- uses: actions/checkout@v6
440440
- name: Set up Python ${{ env.PREVIEW_PYTHON_VERSION }}
441441
uses: actions/setup-python@v6
442442
with:
@@ -458,7 +458,7 @@ jobs:
458458
lint:
459459
runs-on: ubuntu-latest
460460
steps:
461-
- uses: actions/checkout@v5
461+
- uses: actions/checkout@v6
462462
- name: Set up Python ${{ env.LATEST_STABLE_PYTHON }}
463463
uses: actions/setup-python@v6
464464
with:

WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ grpc_deps()
8888

8989
http_archive(
9090
name = "rules_cc",
91-
urls = ["https://github.com/bazelbuild/rules_cc/releases/download/0.1.1/rules_cc-0.1.1.tar.gz"],
92-
sha256 = "712d77868b3152dd618c4d64faaddefcc5965f90f5de6e6dd1d5ddcd0be82d42",
93-
strip_prefix = "rules_cc-0.1.1",
91+
urls = ["https://github.com/bazelbuild/rules_cc/releases/download/0.2.16/rules_cc-0.2.16.tar.gz"],
92+
sha256 = "458b658277ba51b4730ea7a2020efdf1c6dcadf7d30de72e37f4308277fa8c01",
93+
strip_prefix = "rules_cc-0.2.16",
9494
)
9595

9696
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps", "PROTOBUF_MAVEN_ARTIFACTS")

requirements.txt

Lines changed: 35 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -146,13 +146,13 @@ backports-asyncio-runner==1.2.0 \
146146
--hash=sha256:0da0a936a8aeb554eccb426dc55af3ba63bcdc69fa1a600b5bb305413a4477b5 \
147147
--hash=sha256:a5aa7b2b7d8f8bfcaa2b57313f70792df84e32a2a746f585213373f900b42162
148148
# via pytest-asyncio
149-
cachetools==6.2.1 \
150-
--hash=sha256:09868944b6dde876dfd44e1d47e18484541eaf12f26f29b7af91b26cc892d701 \
151-
--hash=sha256:3f391e4bd8f8bf0931169baf7456cc822705f4e2a31f840d218f445b9a854201
149+
cachetools==6.2.4 \
150+
--hash=sha256:69a7a52634fed8b8bf6e24a050fb60bff1c9bd8f6d24572b99c32d4e71e62a51 \
151+
--hash=sha256:82c5c05585e70b6ba2d3ae09ea60b79548872185d2f24ae1f2709d37299fd607
152152
# via google-auth
153-
certifi==2025.10.5 \
154-
--hash=sha256:0f212c2744a9bb6de0c56639a6f68afe01ecd92d91f14ae897c4fe7bbeeef0de \
155-
--hash=sha256:47c09d31ccf2acf0be3f701ea53595ee7e0b8fa08801c6624be771df09ae7b43
153+
certifi==2025.11.12 \
154+
--hash=sha256:97de8790030bbd5c2d96b7ec782fc2f7820ef8dba6db909ccf95449f2d062d4b \
155+
--hash=sha256:d8ab5478f2ecd78af242878415affce761ca6bc54a22a27e026d7c25357c3316
156156
# via requests
157157
charset-normalizer==3.4.4 \
158158
--hash=sha256:027f6de494925c0ab2a55eab46ae5129951638a49a34d87f4c3eda90f696b4ad \
@@ -269,13 +269,13 @@ charset-normalizer==3.4.4 \
269269
--hash=sha256:faa3a41b2b66b6e50f84ae4a68c64fcd0c44355741c6374813a800cd6695db9e \
270270
--hash=sha256:fd44c878ea55ba351104cb93cc85e74916eb8fa440ca7903e57575e97394f608
271271
# via requests
272-
click==8.3.0 \
273-
--hash=sha256:9b9f285302c6e3064f4330c05f05b81945b2a39544279343e6e7c5f27a9baddc \
274-
--hash=sha256:e7b8232224eba16f4ebe410c25ced9f7875cb5f3263ffc93cc3e8da705e229c4
272+
click==8.3.1 \
273+
--hash=sha256:12ff4785d337a1bb490bb7e9c2b1ee5da3112e94a8622f26a6c77f5d2fc6842a \
274+
--hash=sha256:981153a64e25f12d547d3426c367a4857371575ee7ad18df2a6183ab0545b2a6
275275
# via -r requirements.in
276-
exceptiongroup==1.3.0 \
277-
--hash=sha256:4d111e6e0c13d0644cad6ddaa7ed0261a0b36971f6d23e7ec9b4b9097da78a10 \
278-
--hash=sha256:b241f5885f560bc56a59ee63ca4c6a8bfa46ae4ad651af316d4e81817bb9fd88
276+
exceptiongroup==1.3.1 \
277+
--hash=sha256:8b412432c6055b0b7d14c310000ae93352ed6754f70fa8f7c34141f91c4e3219 \
278+
--hash=sha256:a7a39a3bd276781e98394987d3a5701d0c4edffb633bb7a5144577f82c773598
279279
# via pytest
280280
frozenlist==1.8.0 \
281281
--hash=sha256:0325024fe97f94c41c08872db482cf8ac4800d80e79222c6b0b7b162d5b13686 \
@@ -415,9 +415,9 @@ google-api-core==2.28.1 \
415415
--hash=sha256:2b405df02d68e68ce0fbc138559e6036559e685159d148ae5861013dc201baf8 \
416416
--hash=sha256:4021b0f8ceb77a6fb4de6fde4502cecab45062e66ff4f2895169e0b35bc9466c
417417
# via -r requirements.in
418-
google-auth==2.43.0 \
419-
--hash=sha256:88228eee5fc21b62a1b5fe773ca15e67778cb07dc8363adcb4a8827b52d81483 \
420-
--hash=sha256:af628ba6fa493f75c7e9dbe9373d148ca9f4399b5ea29976519e0a3848eddd16
418+
google-auth==2.45.0 \
419+
--hash=sha256:82344e86dc00410ef5382d99be677c6043d72e502b625aa4f4afa0bdacca0f36 \
420+
--hash=sha256:90d3f41b6b72ea72dd9811e765699ee491ab24139f34ebf1ca2b9cc0c38708f3
421421
# via google-api-core
422422
googleapis-common-protos[grpc]==1.72.0 \
423423
--hash=sha256:4299c5a82d5ae1a9702ada957347726b167f9f8d1fc352477702a1e851ff4038 \
@@ -957,23 +957,23 @@ propcache==0.4.1 \
957957
# via
958958
# aiohttp
959959
# yarl
960-
proto-plus==1.26.1 \
961-
--hash=sha256:13285478c2dcf2abb829db158e1047e2f1e8d63a077d94263c2b88b043c75a66 \
962-
--hash=sha256:21a515a4c4c0088a773899e23c7bbade3d18f9c66c73edd4c7ee3816bc96a012
960+
proto-plus==1.27.0 \
961+
--hash=sha256:1baa7f81cf0f8acb8bc1f6d085008ba4171eaf669629d1b6d1673b21ed1c0a82 \
962+
--hash=sha256:873af56dd0d7e91836aee871e5799e1c6f1bda86ac9a983e0bb9f0c266a568c4
963963
# via
964964
# -r requirements.in
965965
# google-api-core
966-
protobuf==6.33.0 \
967-
--hash=sha256:140303d5c8d2037730c548f8c7b93b20bb1dc301be280c378b82b8894589c954 \
968-
--hash=sha256:25c9e1963c6734448ea2d308cfa610e692b801304ba0908d7bfa564ac5132995 \
969-
--hash=sha256:35be49fd3f4fefa4e6e2aacc35e8b837d6703c37a2168a55ac21e9b1bc7559ef \
970-
--hash=sha256:905b07a65f1a4b72412314082c7dbfae91a9e8b68a0cc1577515f8df58ecf455 \
971-
--hash=sha256:9a031d10f703f03768f2743a1c403af050b6ae1f3480e9c140f39c45f81b13ee \
972-
--hash=sha256:c963e86c3655af3a917962c9619e1a6b9670540351d7af9439d06064e3317cc9 \
973-
--hash=sha256:cd33a8e38ea3e39df66e1bbc462b076d6e5ba3a4ebbde58219d777223a7873d3 \
974-
--hash=sha256:d6101ded078042a8f17959eccd9236fb7a9ca20d3b0098bbcb91533a5680d035 \
975-
--hash=sha256:e0697ece353e6239b90ee43a9231318302ad8353c70e6e45499fa52396debf90 \
976-
--hash=sha256:e0a1715e4f27355afd9570f3ea369735afc853a6c3951a6afe1f80d8569ad298
966+
protobuf==6.33.2 \
967+
--hash=sha256:1f8017c48c07ec5859106533b682260ba3d7c5567b1ca1f24297ce03384d1b4f \
968+
--hash=sha256:2981c58f582f44b6b13173e12bb8656711189c2a70250845f264b877f00b1913 \
969+
--hash=sha256:56dc370c91fbb8ac85bc13582c9e373569668a290aa2e66a590c2a0d35ddb9e4 \
970+
--hash=sha256:7109dcc38a680d033ffb8bf896727423528db9163be1b6a02d6a49606dcadbfe \
971+
--hash=sha256:7636aad9bb01768870266de5dc009de2d1b936771b38a793f73cbbf279c91c5c \
972+
--hash=sha256:87eb388bd2d0f78febd8f4c8779c79247b26a5befad525008e49a6955787ff3d \
973+
--hash=sha256:8cd7640aee0b7828b6d03ae518b5b4806fdfc1afe8de82f79c3454f8aef29872 \
974+
--hash=sha256:b5d3b5625192214066d99b2b605f5783483575656784de223f00a8d00754fc0e \
975+
--hash=sha256:d9b19771ca75935b3a4422957bc518b0cecb978b31d1dd12037b088f6bcc0e43 \
976+
--hash=sha256:fc2a0e8b05b180e5fc0dd1559fe8ebdae21a27e81ac77728fb6c42b12c7419b4
977977
# via
978978
# -r requirements.in
979979
# google-api-core
@@ -994,12 +994,13 @@ pygments==2.19.2 \
994994
--hash=sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887 \
995995
--hash=sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b
996996
# via pytest
997-
pypandoc==1.16 \
998-
--hash=sha256:868f390d48388743e7a5885915cbbaa005dea36a825ecdfd571f8c523416c822
997+
pypandoc==1.16.2 \
998+
--hash=sha256:7a72a9fbf4a5dc700465e384c3bb333d22220efc4e972cb98cf6fc723cdca86b \
999+
--hash=sha256:c200c1139c8e3247baf38d1e9279e85d9f162499d1999c6aa8418596558fe79b
9991000
# via -r requirements.in
1000-
pytest==9.0.0 \
1001-
--hash=sha256:8f44522eafe4137b0f35c9ce3072931a788a21ee40a2ed279e817d3cc16ed21e \
1002-
--hash=sha256:e5ccdf10b0bac554970ee88fc1a4ad0ee5d221f8ef22321f9b7e4584e19d7f96
1001+
pytest==9.0.2 \
1002+
--hash=sha256:711ffd45bf766d5264d487b917733b453d917afd2b0ad65223959f59089f875b \
1003+
--hash=sha256:75186651a92bd89611d1d9fc20f0b4345fd827c41ccd5c299a868a05d70edf11
10031004
# via pytest-asyncio
10041005
pytest-asyncio==1.3.0 \
10051006
--hash=sha256:611e26147c7f77640e6d0a92a38ed17c3e9848063698d5c93d5aa7aa11cebff5 \

0 commit comments

Comments
 (0)