From 7cb5732246538e420586e6219ee2a859535eb5c9 Mon Sep 17 00:00:00 2001 From: Joongi Kim Date: Sat, 4 Jan 2025 13:50:58 +0900 Subject: [PATCH] ci: Update action runners (#3367) Backported-from: main (24.12) Backported-to: 23.09 Backport-of: 3367 --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 93080bc2c5..be6305c04b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -334,11 +334,11 @@ jobs: strategy: fail-fast: false matrix: - # ubuntu-latest: x86-64 + # ubuntu-22.04: x86-64 # ubuntu-22.04-arm64: aarch64 - # macos-12: intel - # macos-13: apple silicon - os: [ubuntu-latest, ubuntu-22.04-arm64, macos-13-xlarge, macos-12-large] + # macos-14-large: intel + # macos-14-xlarge: apple silicon + os: [ubuntu-22.04, ubuntu-22.04-arm64, macos-14-xlarge, macos-14-large] runs-on: ${{ matrix.os }} steps: - name: Check out the revision @@ -390,7 +390,7 @@ jobs: build-wheels: needs: [lint, typecheck, test, check-alembic-migrations] if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Check out the revision uses: actions/checkout@v4