diff --git a/.github/workflows/apply-version-update.yml b/.github/workflows/apply-version-update.yml index d65ef3f87b..8906edd857 100644 --- a/.github/workflows/apply-version-update.yml +++ b/.github/workflows/apply-version-update.yml @@ -120,7 +120,7 @@ jobs: update-pr-with-changes: needs: [ get-changes-scope, get-version-scope ] if: needs.get-version-scope.outputs.has-versioning == 'true' && needs.get-changes-scope.outputs.num-packages > 0 - runs-on: buildjet-16vcpu-ubuntu-2204 + runs-on: ubuntu-latest-16-cores steps: - uses: actions/checkout@v3 - uses: ./.github/actions/install-linux-build-deps diff --git a/.github/workflows/integration-reusable.yml b/.github/workflows/integration-reusable.yml index 5dc57bbb14..86ed27963d 100644 --- a/.github/workflows/integration-reusable.yml +++ b/.github/workflows/integration-reusable.yml @@ -47,7 +47,7 @@ jobs: - '.github/workflows/integration-reusable.yml' build-and-test: name: Build and Test - runs-on: buildjet-8vcpu-ubuntu-2204 + runs-on: ubuntu-latest-16-cores needs: changes if: | inputs.changes == false || diff --git a/.github/workflows/program-reusable.yml b/.github/workflows/program-reusable.yml index 43d5e7654f..170f48017b 100644 --- a/.github/workflows/program-reusable.yml +++ b/.github/workflows/program-reusable.yml @@ -55,7 +55,7 @@ jobs: build-lint-and-test: name: Build Lint and Test - runs-on: buildjet-8vcpu-ubuntu-2204 + runs-on: ubuntu-latest-16-cores needs: changes if: | inputs.changes == false || diff --git a/.github/workflows/verify-lib-on-pr-open.yml b/.github/workflows/verify-lib-on-pr-open.yml index e732d0ed4e..3ceb1f96e3 100644 --- a/.github/workflows/verify-lib-on-pr-open.yml +++ b/.github/workflows/verify-lib-on-pr-open.yml @@ -83,7 +83,7 @@ jobs: needs: [get-changes-scope] # note: checking for empty string just doesn't work, so we explicitly return and check null in the case that there's nothing to verify if: ${{ needs.get-changes-scope.outputs.packages != 'null' }} - runs-on: buildjet-16vcpu-ubuntu-2204 + runs-on: ubuntu-latest-16-cores steps: # branch should be the branch from which the PR is opened - uses: actions/checkout@v3