Skip to content
This repository was archived by the owner on Sep 11, 2025. It is now read-only.
Merged
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
6 changes: 0 additions & 6 deletions .github/actionlint.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/ci-go-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
go-test:
needs: get-dirs
name: test
runs-on: warp-ubuntu-latest-x64-4x
runs-on: ubuntu-latest
strategy:
matrix:
dir: ${{ fromJson(needs.get-dirs.outputs.dirs) }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-runtime-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
build:
name: Build ${{ matrix.os }}
runs-on:
"${{ matrix.os == 'linux' && 'warp-ubuntu-latest-x64-4x' || matrix.os == 'macos' &&
'warp-macos-15-arm64-6x' || 'warp-windows-latest-x64-8x' }}"
"${{ matrix.os == 'linux' && 'ubuntu-latest' || matrix.os == 'macos' && 'macos-15' ||
'windows-latest' }}"

strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-runtime-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ permissions:
jobs:
runtime-integration-tests:
name: test (runtime)
runs-on: warp-ubuntu-latest-x64-4x
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
# - https://gh.io/using-larger-runners (GitHub.com only)
# Consider using larger runners or machines with greater resources for possible analysis time improvements.
# runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
runs-on: warp-ubuntu-latest-x64-8x
runs-on: ubuntu-latest
permissions:
# required for all workflows
security-events: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-cli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
release-install-script:
needs: release
name: Release Install Script
runs-on: warp-ubuntu-latest-x64-2x
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-info.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ permissions:
contents: read
jobs:
release-info:
runs-on: warp-ubuntu-latest-x64-2x
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-runtime.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:
jobs:
release:
name: Release
runs-on: warp-ubuntu-latest-x64-4x
runs-on: ubuntu-latest
steps:
- name: Validate version
if: ${{ !startsWith(github.ref_name, 'runtime/v') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permissions:
jobs:
release:
name: Release
runs-on: warp-ubuntu-latest-x64-2x
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-sdk-go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:
jobs:
release:
name: Release
runs-on: warp-ubuntu-latest-x64-4x
runs-on: ubuntu-latest
steps:
- name: Validate version
if: ${{ !startsWith(github.ref_name, 'sdk/go/v') }}
Expand Down
Loading