diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ff9d980f2..fc6811c63 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ concurrency: jobs: ci: name: Lint + Build + Test - runs-on: ubuntu-latest + runs-on: ubuntu-latest-large steps: - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 - name: Install devbox @@ -34,7 +34,7 @@ jobs: commitlint: name: Commitlint if: github.event_name == 'pull_request' - runs-on: ubuntu-latest + runs-on: ubuntu-latest-large steps: - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 - name: Install devbox diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 2aac6a64e..4fbbde6e2 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -24,7 +24,7 @@ jobs: e2e-tests: # Skip on fork PRs and Dependabot PRs where repo secrets aren't available if: ${{ github.event_name != 'pull_request' || (github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]') }} - runs-on: ubuntu-latest + runs-on: ubuntu-latest-large steps: - name: Checkout SDK diff --git a/.github/workflows/publish-e2e-cli.yml b/.github/workflows/publish-e2e-cli.yml index 2bfa8f862..ee0d7de4c 100644 --- a/.github/workflows/publish-e2e-cli.yml +++ b/.github/workflows/publish-e2e-cli.yml @@ -17,7 +17,7 @@ on: jobs: publish: - runs-on: ubuntu-latest + runs-on: ubuntu-latest-large steps: - name: Checkout SDK uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d81b674bd..c30164769 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ concurrency: jobs: ci: name: Lint + Build + Test - runs-on: ubuntu-latest + runs-on: ubuntu-latest-large steps: - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 - name: Install devbox @@ -41,7 +41,7 @@ jobs: name: Release (dry-run) if: inputs.type == 'dry-run' needs: [ci] - runs-on: ubuntu-latest + runs-on: ubuntu-latest-large permissions: contents: write issues: write @@ -65,7 +65,7 @@ jobs: name: Release (beta) if: inputs.type == 'beta' needs: [ci] - runs-on: ubuntu-latest + runs-on: ubuntu-latest-large environment: Publish-Beta permissions: contents: write @@ -92,7 +92,7 @@ jobs: name: Release (production) if: inputs.type == 'production' needs: [ci] - runs-on: ubuntu-latest + runs-on: ubuntu-latest-large environment: Publish permissions: contents: write