Skip to content

Commit d77b8a5

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

File tree

3 files changed

+182
-181
lines changed

3 files changed

+182
-181
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")

0 commit comments

Comments
 (0)