From b275ee1bbc463d430bda9b975545c58e7f5f7cf3 Mon Sep 17 00:00:00 2001 From: Zac Clifton <43915749+Cliftonz@users.noreply.github.com> Date: Tue, 5 Mar 2024 09:05:46 -0500 Subject: [PATCH] Revert "Update runner type to ubuntu-latest-large" --- .github/workflows/dev-deploy-api.yml | 2 +- .github/workflows/dev-deploy-inbound-mail.yml | 2 +- .github/workflows/dev-deploy-worker.yml | 2 +- .github/workflows/dev-deploy-ws.yml | 2 +- .github/workflows/prod-deploy-api.yml | 2 +- .github/workflows/prod-deploy-inbound-mail.yml | 2 +- .github/workflows/prod-deploy-worker.yml | 2 +- .github/workflows/prod-deploy-ws.yml | 2 +- .github/workflows/reusable-api-e2e.yml | 2 +- .github/workflows/reusable-docker.yml | 2 +- .github/workflows/reusable-inbound-mail-e2e.yml | 2 +- .github/workflows/reusable-web-e2e.yml | 4 ++-- .github/workflows/reusable-webhook-e2e.yml | 2 +- .github/workflows/reusable-widget-deploy.yml | 2 +- .github/workflows/reusable-widget-e2e.yml | 2 +- .github/workflows/reusable-worker-e2e.yml | 2 +- .github/workflows/test.yml | 12 ++++++------ 17 files changed, 23 insertions(+), 23 deletions(-) diff --git a/.github/workflows/dev-deploy-api.yml b/.github/workflows/dev-deploy-api.yml index bfe6006b909..8a24b605ccb 100644 --- a/.github/workflows/dev-deploy-api.yml +++ b/.github/workflows/dev-deploy-api.yml @@ -31,7 +31,7 @@ jobs: deploy_dev_api: if: "!contains(github.event.head_commit.message, 'ci skip')" # The type of runner that the job will run on - runs-on: ubuntu-latest-large + runs-on: ubuntu-latest needs: test_api timeout-minutes: 80 environment: Development diff --git a/.github/workflows/dev-deploy-inbound-mail.yml b/.github/workflows/dev-deploy-inbound-mail.yml index 6fe461c0481..bae5aa90411 100644 --- a/.github/workflows/dev-deploy-inbound-mail.yml +++ b/.github/workflows/dev-deploy-inbound-mail.yml @@ -29,7 +29,7 @@ jobs: dev_deploy_inbound_mail: # The type of runner that the job will run on - runs-on: ubuntu-latest-large + runs-on: ubuntu-latest needs: test_inbound_mail timeout-minutes: 80 environment: Development diff --git a/.github/workflows/dev-deploy-worker.yml b/.github/workflows/dev-deploy-worker.yml index 74e5ec8cf9f..cfbfd53d0c9 100644 --- a/.github/workflows/dev-deploy-worker.yml +++ b/.github/workflows/dev-deploy-worker.yml @@ -34,7 +34,7 @@ jobs: build_dev_worker: if: "!contains(github.event.head_commit.message, 'ci skip')" # The type of runner that the job will run on - runs-on: ubuntu-latest-large + runs-on: ubuntu-latest needs: test_worker timeout-minutes: 80 environment: Development diff --git a/.github/workflows/dev-deploy-ws.yml b/.github/workflows/dev-deploy-ws.yml index 841506b2b89..5bd19baeeb5 100644 --- a/.github/workflows/dev-deploy-ws.yml +++ b/.github/workflows/dev-deploy-ws.yml @@ -26,7 +26,7 @@ jobs: # This workflow contains a single job called "build" deploy_ws: # The type of runner that the job will run on - runs-on: ubuntu-latest-large + runs-on: ubuntu-latest needs: test_ws timeout-minutes: 80 environment: Development diff --git a/.github/workflows/prod-deploy-api.yml b/.github/workflows/prod-deploy-api.yml index 17c5dfcd17d..604fa10f784 100644 --- a/.github/workflows/prod-deploy-api.yml +++ b/.github/workflows/prod-deploy-api.yml @@ -20,7 +20,7 @@ jobs: build_prod_image: if: "!contains(github.event.head_commit.message, 'ci skip')" # The type of runner that the job will run on - runs-on: ubuntu-latest-large + runs-on: ubuntu-latest needs: test_api timeout-minutes: 80 environment: Production diff --git a/.github/workflows/prod-deploy-inbound-mail.yml b/.github/workflows/prod-deploy-inbound-mail.yml index 8d885a72f82..9a49ad4334f 100644 --- a/.github/workflows/prod-deploy-inbound-mail.yml +++ b/.github/workflows/prod-deploy-inbound-mail.yml @@ -16,7 +16,7 @@ jobs: secrets: inherit build_prod_image: - runs-on: ubuntu-latest-large + runs-on: ubuntu-latest timeout-minutes: 80 environment: Production outputs: diff --git a/.github/workflows/prod-deploy-worker.yml b/.github/workflows/prod-deploy-worker.yml index b77be3557fa..8b0daade313 100644 --- a/.github/workflows/prod-deploy-worker.yml +++ b/.github/workflows/prod-deploy-worker.yml @@ -19,7 +19,7 @@ jobs: build_prod_image: if: "!contains(github.event.head_commit.message, 'ci skip')" # The type of runner that the job will run on - runs-on: ubuntu-latest-large + runs-on: ubuntu-latest needs: test_worker timeout-minutes: 80 environment: Production diff --git a/.github/workflows/prod-deploy-ws.yml b/.github/workflows/prod-deploy-ws.yml index 19c89d90260..49f5d610114 100644 --- a/.github/workflows/prod-deploy-ws.yml +++ b/.github/workflows/prod-deploy-ws.yml @@ -18,7 +18,7 @@ jobs: # This workflow contains a single job called "build" build_prod_image: # The type of runner that the job will run on - runs-on: ubuntu-latest-large + runs-on: ubuntu-latest timeout-minutes: 80 environment: Production needs: diff --git a/.github/workflows/reusable-api-e2e.yml b/.github/workflows/reusable-api-e2e.yml index 8e3a8a84923..f3f63c7c9fa 100644 --- a/.github/workflows/reusable-api-e2e.yml +++ b/.github/workflows/reusable-api-e2e.yml @@ -46,7 +46,7 @@ jobs: e2e_api: name: Test E2E # The type of runner that the job will run on - runs-on: ubuntu-latest-large + runs-on: ubuntu-latest timeout-minutes: 80 permissions: contents: read diff --git a/.github/workflows/reusable-docker.yml b/.github/workflows/reusable-docker.yml index 03abb25dcd2..7252a87108c 100644 --- a/.github/workflows/reusable-docker.yml +++ b/.github/workflows/reusable-docker.yml @@ -46,7 +46,7 @@ on: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: reusable_docker: - runs-on: ubuntu-latest-large + runs-on: ubuntu-latest timeout-minutes: 80 environment: ${{ inputs.environment }} outputs: diff --git a/.github/workflows/reusable-inbound-mail-e2e.yml b/.github/workflows/reusable-inbound-mail-e2e.yml index c67ade7de44..3e08d0b1b22 100644 --- a/.github/workflows/reusable-inbound-mail-e2e.yml +++ b/.github/workflows/reusable-inbound-mail-e2e.yml @@ -15,7 +15,7 @@ jobs: # This workflow contains a single job called "build" e2e_inbound_mail: # The type of runner that the job will run on - runs-on: ubuntu-latest-large + runs-on: ubuntu-latest timeout-minutes: 80 permissions: diff --git a/.github/workflows/reusable-web-e2e.yml b/.github/workflows/reusable-web-e2e.yml index 22a02b300ed..37bafad52a9 100644 --- a/.github/workflows/reusable-web-e2e.yml +++ b/.github/workflows/reusable-web-e2e.yml @@ -26,7 +26,7 @@ jobs: fail-fast: false # The type of runner that the job will run on - runs-on: ubuntu-latest-large + runs-on: ubuntu-latest timeout-minutes: 80 permissions: @@ -150,7 +150,7 @@ jobs: if: "!contains(github.event.head_commit.message, 'ci skip')" # The type of runner that the job will run on - runs-on: ubuntu-latest-large + runs-on: ubuntu-latest timeout-minutes: 80 # Steps represent a sequence of tasks that will be executed as part of the job diff --git a/.github/workflows/reusable-webhook-e2e.yml b/.github/workflows/reusable-webhook-e2e.yml index 20385f6ee80..5814da05c2d 100644 --- a/.github/workflows/reusable-webhook-e2e.yml +++ b/.github/workflows/reusable-webhook-e2e.yml @@ -9,7 +9,7 @@ jobs: # This workflow contains a single job called "build" e2e_webhook: # The type of runner that the job will run on - runs-on: ubuntu-latest-large + runs-on: ubuntu-latest timeout-minutes: 80 # Steps represent a sequence of tasks that will be executed as part of the job diff --git a/.github/workflows/reusable-widget-deploy.yml b/.github/workflows/reusable-widget-deploy.yml index db17dce1cf6..d3b8425216b 100644 --- a/.github/workflows/reusable-widget-deploy.yml +++ b/.github/workflows/reusable-widget-deploy.yml @@ -40,7 +40,7 @@ on: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: reusable_widget_deploy: - runs-on: ubuntu-latest-large + runs-on: ubuntu-latest timeout-minutes: 80 environment: ${{ inputs.environment }} permissions: diff --git a/.github/workflows/reusable-widget-e2e.yml b/.github/workflows/reusable-widget-e2e.yml index f7c056f9df6..862a8ce0ea8 100644 --- a/.github/workflows/reusable-widget-e2e.yml +++ b/.github/workflows/reusable-widget-e2e.yml @@ -16,7 +16,7 @@ jobs: # This workflow contains a single job called "build" e2e_widget: # The type of runner that the job will run on - runs-on: ubuntu-latest-large + runs-on: ubuntu-latest timeout-minutes: 80 strategy: diff --git a/.github/workflows/reusable-worker-e2e.yml b/.github/workflows/reusable-worker-e2e.yml index cf416ca5594..ab20f45e47b 100644 --- a/.github/workflows/reusable-worker-e2e.yml +++ b/.github/workflows/reusable-worker-e2e.yml @@ -15,7 +15,7 @@ jobs: # This workflow contains a single job called "build" e2e_worker_service: # The type of runner that the job will run on - runs-on: ubuntu-latest-large + runs-on: ubuntu-latest timeout-minutes: 80 permissions: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b4d8cb15f26..86a5862f34c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -110,7 +110,7 @@ jobs: build_docker_api: name: Build Docker API - runs-on: ubuntu-latest-large + runs-on: ubuntu-latest timeout-minutes: 80 needs: [get-affected] if: ${{ contains(fromJson(needs.get-affected.outputs.test-e2e), '@novu/api') }} @@ -134,7 +134,7 @@ jobs: test_providers: name: Unit Test Providers - runs-on: ubuntu-latest-large + runs-on: ubuntu-latest needs: [get-affected] if: ${{ fromJson(needs.get-affected.outputs.test-providers)[0] }} timeout-minutes: 80 @@ -152,7 +152,7 @@ jobs: test_packages: name: Unit Test Packages - runs-on: ubuntu-latest-large + runs-on: ubuntu-latest needs: [get-affected] if: ${{ fromJson(needs.get-affected.outputs.test-packages)[0] }} timeout-minutes: 80 @@ -186,7 +186,7 @@ jobs: test_libs: name: Unit Test Libs - runs-on: ubuntu-latest-large + runs-on: ubuntu-latest needs: [get-affected] if: ${{ fromJson(needs.get-affected.outputs.test-libs)[0] }} timeout-minutes: 80 @@ -216,7 +216,7 @@ jobs: test_unit: name: Unit Test - runs-on: ubuntu-latest-large + runs-on: ubuntu-latest needs: [get-affected] if: ${{ fromJson(needs.get-affected.outputs.test-unit)[0] }} timeout-minutes: 80 @@ -245,7 +245,7 @@ jobs: validate_openapi: name: Validate OpenAPI - runs-on: ubuntu-latest-large + runs-on: ubuntu-latest needs: [get-affected] if: ${{ fromJson(needs.get-affected.outputs.test-unit)[0] }} timeout-minutes: 10