Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update runners to ubuntu-24.04 from deprecated ubuntu-20.04 label #873

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci-build-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
# https://github.com/tensorflow/quantum/actions/workflows/ci-build-checks.yaml
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

name: CI build checks

Check warning on line 10 in .github/workflows/ci-build-checks.yaml

View workflow job for this annotation

GitHub Actions / YAML lint

10:1 [document-start] missing document start "---"
run-name: Continuous integration build & test

on:

Check warning on line 13 in .github/workflows/ci-build-checks.yaml

View workflow job for this annotation

GitHub Actions / YAML lint

13:1 [truthy] truthy value should be one of [false, true]
pull_request:
types: [opened, synchronize]
branches:
Expand Down Expand Up @@ -169,7 +169,7 @@
Setup:
if: needs.Decision.outputs.need_run == 'true'
needs: Decision
runs-on: ubuntu-20.04
runs-on: 'ubuntu-24.04'
timeout-minutes: 15
outputs:
python_cache_key: ${{steps.parameters.outputs.python_cache_key}}
Expand Down Expand Up @@ -266,7 +266,7 @@
if: needs.Decision.outputs.need_run == 'true'
name: Build Python wheel
needs: [Decision, Setup]
runs-on: ubuntu-20.04
runs-on: 'ubuntu-24.04'
steps:
- name: Check out a copy of the TFQ git repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -335,7 +335,7 @@
if: needs.Decision.outputs.need_run == 'true'
name: Test the Python wheel
needs: [Decision, Setup, Build_wheel]
runs-on: ubuntu-20.04
runs-on: 'ubuntu-24.04'
steps:
- name: Check out a copy of the TFQ git repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -371,7 +371,7 @@
if: needs.Decision.outputs.need_run == 'true'
name: Test the rest of TFQ
needs: [Decision, Setup, Build_wheel]
runs-on: ubuntu-20.04
runs-on: 'ubuntu-24.04'
steps:
- name: Check out a copy of the TFQ git repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -424,7 +424,7 @@
Tutorial_tests:
if: needs.Decision.outputs.need_run == 'true'
name: Test the tutorials
runs-on: ubuntu-20.04
runs-on: 'ubuntu-24.04'
needs: [Decision, Setup, Build_wheel]
steps:
- name: Check out a copy of the TFQ git repository
Expand Down Expand Up @@ -470,7 +470,7 @@
if: failure() || needs.setup.outputs.debug == 'true'
name: Print debugging info
needs: [Decision, Setup, Build_wheel, Bazel_tests]
runs-on: ubuntu-20.04
runs-on: 'ubuntu-24.04'
steps:
- name: Check out a copy of the TFQ git repository
uses: actions/checkout@v4
Expand Down
Loading