Skip to content
This repository was archived by the owner on Sep 11, 2025. It is now read-only.

Commit c86869a

Browse files
authored
chore: move off Warp runners for GitHub Actions (#968)
1 parent 29af67b commit c86869a

File tree

10 files changed

+10
-16
lines changed

10 files changed

+10
-16
lines changed

.github/actionlint.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.github/workflows/ci-go-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
go-test:
4141
needs: get-dirs
4242
name: test
43-
runs-on: warp-ubuntu-latest-x64-4x
43+
runs-on: ubuntu-latest
4444
strategy:
4545
matrix:
4646
dir: ${{ fromJson(needs.get-dirs.outputs.dirs) }}

.github/workflows/ci-runtime-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020
build:
2121
name: Build ${{ matrix.os }}
2222
runs-on:
23-
"${{ matrix.os == 'linux' && 'warp-ubuntu-latest-x64-4x' || matrix.os == 'macos' &&
24-
'warp-macos-15-arm64-6x' || 'warp-windows-latest-x64-8x' }}"
23+
"${{ matrix.os == 'linux' && 'ubuntu-latest' || matrix.os == 'macos' && 'macos-15' ||
24+
'windows-latest' }}"
2525

2626
strategy:
2727
fail-fast: false

.github/workflows/ci-runtime-integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ permissions:
1818
jobs:
1919
runtime-integration-tests:
2020
name: test (runtime)
21-
runs-on: warp-ubuntu-latest-x64-4x
21+
runs-on: ubuntu-latest
2222
if: github.event.pull_request.draft == false
2323
steps:
2424
- uses: actions/checkout@v5

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
# - https://gh.io/using-larger-runners (GitHub.com only)
3232
# Consider using larger runners or machines with greater resources for possible analysis time improvements.
3333
# runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
34-
runs-on: warp-ubuntu-latest-x64-8x
34+
runs-on: ubuntu-latest
3535
permissions:
3636
# required for all workflows
3737
security-events: write

.github/workflows/release-cli.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
release-install-script:
6161
needs: release
6262
name: Release Install Script
63-
runs-on: warp-ubuntu-latest-x64-2x
63+
runs-on: ubuntu-latest
6464
steps:
6565
- uses: actions/checkout@v5
6666
with:

.github/workflows/release-info.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permissions:
66
contents: read
77
jobs:
88
release-info:
9-
runs-on: warp-ubuntu-latest-x64-2x
9+
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v5
1212
with:

.github/workflows/release-runtime.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111
jobs:
1212
release:
1313
name: Release
14-
runs-on: warp-ubuntu-latest-x64-4x
14+
runs-on: ubuntu-latest
1515
steps:
1616
- name: Validate version
1717
if: ${{ !startsWith(github.ref_name, 'runtime/v') }}

.github/workflows/release-schema.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99
jobs:
1010
release:
1111
name: Release
12-
runs-on: warp-ubuntu-latest-x64-2x
12+
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v5
1515
with:

.github/workflows/release-sdk-go.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111
jobs:
1212
release:
1313
name: Release
14-
runs-on: warp-ubuntu-latest-x64-4x
14+
runs-on: ubuntu-latest
1515
steps:
1616
- name: Validate version
1717
if: ${{ !startsWith(github.ref_name, 'sdk/go/v') }}

0 commit comments

Comments
 (0)