@@ -131,7 +131,7 @@ jobs:
131
131
if : needs.changes.outputs.python == 'true'
132
132
name : (Set up Python)
133
133
needs : changes
134
- runs-on : ubuntu-latest
134
+ runs-on : ubuntu-24.04
135
135
timeout-minutes : 10
136
136
steps :
137
137
- name : Check out a copy of the git repository
@@ -160,7 +160,7 @@ jobs:
160
160
if : needs.changes.outputs.python == 'true'
161
161
name : Python format checks
162
162
needs : [changes, setup]
163
- runs-on : ubuntu-latest
163
+ runs-on : ubuntu-24.04
164
164
timeout-minutes : 10
165
165
steps :
166
166
- name : Check out a copy of the git repository
@@ -186,7 +186,7 @@ jobs:
186
186
if : needs.changes.outputs.python == 'true'
187
187
name : Python type checks
188
188
needs : [changes, setup]
189
- runs-on : ubuntu-latest
189
+ runs-on : ubuntu-24.04
190
190
timeout-minutes : 10
191
191
steps :
192
192
- name : Check out a copy of the git repository
@@ -210,7 +210,7 @@ jobs:
210
210
if : needs.changes.outputs.python == 'true'
211
211
name : Python lint checks
212
212
needs : [changes, setup]
213
- runs-on : ubuntu-latest
213
+ runs-on : ubuntu-24.04
214
214
timeout-minutes : 10
215
215
steps :
216
216
- name : Check out a copy of the git repository
@@ -249,7 +249,7 @@ jobs:
249
249
timeout-minutes : 15
250
250
strategy :
251
251
matrix :
252
- os : [ ubuntu-latest , macos-latest , windows-latest ]
252
+ os : [ ubuntu-24.04 , macos-14 , windows-2022 ]
253
253
cirq-version : [ 1.4.1 ]
254
254
fail-fast : false
255
255
steps :
@@ -275,7 +275,7 @@ jobs:
275
275
if : needs.changes.outputs.python == 'true' && (success() || failure())
276
276
name : Python pytest checks
277
277
needs : [changes, pytest-matrix]
278
- runs-on : ubuntu-latest
278
+ runs-on : ubuntu-24.04
279
279
steps :
280
280
- run : |
281
281
result="${{needs.pytest-matrix.result}}"
@@ -293,7 +293,7 @@ jobs:
293
293
timeout-minutes : 15
294
294
strategy :
295
295
matrix :
296
- os : [ubuntu-latest , macos-latest ]
296
+ os : [ubuntu-24.04 , macos-14 ]
297
297
cirq-version : [ 1.4.1 ]
298
298
fail-fast : false
299
299
steps :
@@ -319,7 +319,7 @@ jobs:
319
319
if : needs.changes.outputs.python == 'true' && (success() || failure())
320
320
name : Python extra pytest checks
321
321
needs : [changes, pytest-extra-matrix]
322
- runs-on : ubuntu-latest
322
+ runs-on : ubuntu-24.04
323
323
steps :
324
324
- run : |
325
325
result="${{needs.pytest-extra-matrix.result}}"
@@ -357,7 +357,7 @@ jobs:
357
357
if : needs.changes.outputs.python == 'true'
358
358
name : Python code coverage checks
359
359
needs : [changes, setup]
360
- runs-on : ubuntu-latest
360
+ runs-on : ubuntu-24.04
361
361
timeout-minutes : 15
362
362
steps :
363
363
- name : Check out a copy of the git repository
0 commit comments