From 99b013c54edf12f7e8d13cb1cfdd25b0509a845f Mon Sep 17 00:00:00 2001 From: Alper Rifat Ulucinar Date: Wed, 28 Feb 2024 18:22:07 +0300 Subject: [PATCH] Switch from larger runners to ubuntu-22.04 runner for the CI jobs Signed-off-by: Alper Rifat Ulucinar --- .github/workflows/pr-comment-trigger.yml | 6 +++--- .github/workflows/provider-ci.yml | 4 ++-- .github/workflows/provider-publish-service-artifacts.yml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pr-comment-trigger.yml b/.github/workflows/pr-comment-trigger.yml index 23d7799..5f8b8d1 100644 --- a/.github/workflows/pr-comment-trigger.yml +++ b/.github/workflows/pr-comment-trigger.yml @@ -37,7 +37,7 @@ on: jobs: debug: - runs-on: [e2-standard-8, linux] + runs-on: ubuntu-22.04 steps: - name: Debug run: | @@ -50,7 +50,7 @@ jobs: if: ${{ (github.event.comment.author_association == 'OWNER' || github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'COLLABORATOR' || github.event.comment.author_association == 'CONTRIBUTOR' ) && github.event.issue.pull_request && contains(github.event.comment.body, inputs.trigger-keyword ) }} - runs-on: [e2-standard-8, linux] + runs-on: ubuntu-22.04 outputs: example_list: ${{ steps.get-example-list-name.outputs.example-list }} example_hash: ${{ steps.get-example-list-name.outputs.example-hash }} @@ -107,7 +107,7 @@ jobs: if: ${{ (github.event.comment.author_association == 'OWNER' || github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'COLLABORATOR' || github.event.comment.author_association == 'CONTRIBUTOR' ) && github.event.issue.pull_request && contains(github.event.comment.body, inputs.trigger-keyword ) }} - runs-on: [e2-standard-8, linux] + runs-on: ubuntu-22.04 needs: get-example-list steps: diff --git a/.github/workflows/provider-ci.yml b/.github/workflows/provider-ci.yml index bb12173..891ebf2 100644 --- a/.github/workflows/provider-ci.yml +++ b/.github/workflows/provider-ci.yml @@ -73,7 +73,7 @@ jobs: run: | make schema-version-diff lint: - runs-on: Ubuntu-Jumbo-Runner + runs-on: ubuntu-22.04 needs: detect-noop if: needs.detect-noop.outputs.noop != 'true' @@ -288,7 +288,7 @@ jobs: run: make local-deploy publish-artifacts: - runs-on: [e2-standard-8, linux] + runs-on: ubuntu-22.04 needs: detect-noop if: needs.detect-noop.outputs.noop != 'true' diff --git a/.github/workflows/provider-publish-service-artifacts.yml b/.github/workflows/provider-publish-service-artifacts.yml index 499c32f..a668979 100644 --- a/.github/workflows/provider-publish-service-artifacts.yml +++ b/.github/workflows/provider-publish-service-artifacts.yml @@ -57,7 +57,7 @@ env: jobs: index: - runs-on: [e2-standard-8, linux] + runs-on: ubuntu-22.04 outputs: indices: ${{ steps.calc.outputs.indices }} steps: @@ -71,7 +71,7 @@ jobs: index: ${{ fromJSON(needs.index.outputs.indices) }} needs: index - runs-on: [e2-standard-8, linux] + runs-on: ubuntu-22.04 steps: - name: Setup QEMU uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 # v2