From 88e96fa1633abc2bd73b3c0cd7d995852e76b2d3 Mon Sep 17 00:00:00 2001 From: Fallenbagel <98979876+Fallenbagel@users.noreply.github.com> Date: Sat, 18 Jan 2025 17:57:07 +0800 Subject: [PATCH] ci: upgrade runner to ubuntu 24.04 to get arm64 runner working (#1276) This is another attempt to get arm64 runner working by upgrading the runner to ubuntu-24-04, hoping it works better. Related to #1275 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 267dec62e..051f89c1a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: test: name: Lint & Test Build if: github.event_name == 'pull_request' - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 container: node:22-alpine steps: - name: Checkout @@ -49,9 +49,9 @@ jobs: strategy: matrix: include: - - runner: ubuntu-22.04 + - runner: ubuntu-24.04 platform: linux/amd64 - - runner: ubuntu-22.04-arm64 + - runner: ubuntu-24.04-arm64 platform: linux/arm64 runs-on: ${{ matrix.runner }} steps: @@ -96,7 +96,7 @@ jobs: name: Send Discord Notification needs: build_and_push if: always() && github.event_name != 'pull_request' && !contains(github.event.head_commit.message, '[skip ci]') - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Get Build Job Status uses: technote-space/workflow-conclusion-action@v3