Skip to content

Commit d28680e

Browse files
authored
Replace Ubuntu 20.04 runners with 22.04 (#876)
Ubuntu 20.04 is no longer available.
1 parent 5b75920 commit d28680e

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ci-build-checks.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ jobs:
169169
Setup:
170170
if: needs.Decision.outputs.need_run == 'true'
171171
needs: Decision
172-
runs-on: ubuntu-20.04
172+
runs-on: ubuntu-22.04
173173
timeout-minutes: 15
174174
outputs:
175175
python_cache_key: ${{steps.parameters.outputs.python_cache_key}}
@@ -266,7 +266,7 @@ jobs:
266266
if: needs.Decision.outputs.need_run == 'true'
267267
name: Build Python wheel
268268
needs: [Decision, Setup]
269-
runs-on: ubuntu-20.04
269+
runs-on: ubuntu-22.04
270270
steps:
271271
- name: Check out a copy of the TFQ git repository
272272
uses: actions/checkout@v4
@@ -335,7 +335,7 @@ jobs:
335335
if: needs.Decision.outputs.need_run == 'true'
336336
name: Test the Python wheel
337337
needs: [Decision, Setup, Build_wheel]
338-
runs-on: ubuntu-20.04
338+
runs-on: ubuntu-22.04
339339
steps:
340340
- name: Check out a copy of the TFQ git repository
341341
uses: actions/checkout@v4
@@ -371,7 +371,7 @@ jobs:
371371
if: needs.Decision.outputs.need_run == 'true'
372372
name: Test the rest of TFQ
373373
needs: [Decision, Setup, Build_wheel]
374-
runs-on: ubuntu-20.04
374+
runs-on: ubuntu-22.04
375375
steps:
376376
- name: Check out a copy of the TFQ git repository
377377
uses: actions/checkout@v4
@@ -424,7 +424,7 @@ jobs:
424424
Tutorial_tests:
425425
if: needs.Decision.outputs.need_run == 'true'
426426
name: Test the tutorials
427-
runs-on: ubuntu-20.04
427+
runs-on: ubuntu-22.04
428428
needs: [Decision, Setup, Build_wheel]
429429
steps:
430430
- name: Check out a copy of the TFQ git repository
@@ -470,7 +470,7 @@ jobs:
470470
if: failure() || needs.setup.outputs.debug == 'true'
471471
name: Print debugging info
472472
needs: [Decision, Setup, Build_wheel, Bazel_tests]
473-
runs-on: ubuntu-20.04
473+
runs-on: ubuntu-22.04
474474
steps:
475475
- name: Check out a copy of the TFQ git repository
476476
uses: actions/checkout@v4

.github/workflows/ci-nightly-build-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
if: needs.Decision.outputs.run == 'true'
7777
name: Build and test
7878
needs: Decision
79-
runs-on: ubuntu-20.04
79+
runs-on: ubuntu-22.04
8080
steps:
8181
- name: Check out a copy of the TFQ git repository
8282
uses: actions/checkout@v4

.github/workflows/ci-nightly-cirq-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ concurrency:
7272
jobs:
7373
test-compatibility:
7474
name: Run TFQ tests
75-
runs-on: ubuntu-20.04
75+
runs-on: ubuntu-22.04
7676
steps:
7777
- name: Check out a copy of the TFQ git repository
7878
uses: actions/checkout@v4

0 commit comments

Comments
 (0)