@@ -29,7 +29,7 @@ concurrency:
2929jobs :
3030 build-and-push-artifacts :
3131 name : Build and push artifacts for Python ${{ matrix.python_version }}
32- runs-on : ubicloud-standard-2
32+ runs-on : ubuntu-latest
3333 # Only run for base repo, not forks
3434 if : github.event.pull_request.head.repo.full_name == github.repository || github.event_name != 'pull_request'
3535 strategy :
@@ -120,7 +120,7 @@ jobs:
120120
121121 build-and-push-artifacts-status :
122122 name : All artifacts pushed
123- runs-on : ubicloud-standard-2
123+ runs-on : ubuntu-latest
124124 needs : build-and-push-artifacts
125125 # Only run if the build job ran (i.e., not for forks)
126126 if : always() && (github.event.pull_request.head.repo.full_name == github.repository || github.event_name != 'pull_request')
@@ -143,7 +143,7 @@ jobs:
143143
144144 publish-python-package :
145145 name : Publish Python package
146- runs-on : ubicloud-standard-2
146+ runs-on : ubuntu-latest
147147 # Only run for base repo, not forks
148148 if : github.event.pull_request.head.repo.full_name == github.repository || github.event_name != 'pull_request'
149149 outputs :
@@ -282,7 +282,7 @@ jobs:
282282
283283 publish-to-pypi :
284284 name : Publish to PyPI
285- runs-on : ubicloud-standard-2
285+ runs-on : ubuntu-latest
286286 needs : publish-python-package
287287 # Only run for base repo when a new tag is created
288288 if : (github.event.pull_request.head.repo.full_name == github.repository || github.event_name != 'pull_request') && startsWith(github.ref, 'refs/tags/')
@@ -306,7 +306,7 @@ jobs:
306306
307307 deploy-review-app :
308308 name : Deploy review app
309- runs-on : ubicloud-standard-2
309+ runs-on : ubuntu-latest
310310 needs : build-and-push-artifacts-status
311311 # Only run for base repo PRs, not forks
312312 if : github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository
@@ -351,7 +351,7 @@ jobs:
351351
352352 jupyter-for-local :
353353 name : Jupyter for local
354- runs-on : ubicloud-standard-2
354+ runs-on : ubuntu-latest
355355 needs : build-and-push-artifacts-status
356356 # Only run for base repo, not forks
357357 if : github.event.pull_request.head.repo.full_name == github.repository || github.event_name != 'pull_request'
@@ -409,7 +409,7 @@ jobs:
409409
410410 build-toolkit-cluster-cache :
411411 name : Build toolkit cluster cache
412- runs-on : ubicloud-standard-2
412+ runs-on : ubuntu-latest
413413 needs : build-and-push-artifacts-status
414414 if : github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')
415415 env :
@@ -450,7 +450,7 @@ jobs:
450450
451451 release-staging :
452452 name : Release staging
453- runs-on : ubicloud-standard-2
453+ runs-on : ubuntu-latest
454454 needs : build-toolkit-cluster-cache
455455 if : github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')
456456 steps :
@@ -491,7 +491,7 @@ jobs:
491491
492492 release-production :
493493 name : Release production
494- runs-on : ubicloud-standard-2
494+ runs-on : ubuntu-latest
495495 needs : build-toolkit-cluster-cache
496496 if : startsWith(github.ref, 'refs/tags/')
497497 steps :
0 commit comments