From 3424204291cab56798722b753bfc6b3a26d5ad06 Mon Sep 17 00:00:00 2001 From: Livio Spring Date: Wed, 26 Mar 2025 11:06:46 +0100 Subject: [PATCH] chore(workflow): run jobs on public runners (#9643) # Which Problems Are Solved Build and test workflows are currently running on specific GitHub hosted runners. These is not needed for most worklfows and just costs more. # How the Problems Are Solved Moved all the steps apart from integration-tests to public runners. # Additional Changes None # Additional Context None --- .github/workflows/console.yml | 3 +-- .github/workflows/core-unit-test.yml | 3 +-- .github/workflows/core.yml | 3 +-- .github/workflows/e2e.yml | 3 +-- 4 files changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/console.yml b/.github/workflows/console.yml index 38e75a069b..3e77757129 100644 --- a/.github/workflows/console.yml +++ b/.github/workflows/console.yml @@ -23,8 +23,7 @@ jobs: outputs: cache_key: ${{ steps.cache.outputs.cache-primary-key }} cache_path: ${{ env.cache_path }} - runs-on: - group: zitadel-public + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/core-unit-test.yml b/.github/workflows/core-unit-test.yml index 9fb5f572c7..715a08eb19 100644 --- a/.github/workflows/core-unit-test.yml +++ b/.github/workflows/core-unit-test.yml @@ -18,8 +18,7 @@ on: jobs: test: - runs-on: - group: zitadel-public + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/core.yml b/.github/workflows/core.yml index 84843b1fa3..13e7c0dee7 100644 --- a/.github/workflows/core.yml +++ b/.github/workflows/core.yml @@ -28,8 +28,7 @@ env: jobs: build: - runs-on: - group: zitadel-public + runs-on: ubuntu-latest outputs: cache_key: ${{ steps.cache.outputs.cache-primary-key }} cache_path: ${{ env.cache_path }} diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 4100347d6d..88424d2bf8 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -10,8 +10,7 @@ jobs: fail-fast: false matrix: browser: [firefox, chrome] - runs-on: - group: zitadel-public + runs-on: ubuntu-latest steps: - name: Checkout Repository