Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-e2e-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
Loading