Skip to content

Commit 3891523

Browse files
committed
fix(workflows): correct ARM64 Linux runner labels
Changes ubuntu-24.04-arm64 → ubuntu-24.04-arm for Linux ARM64 builds. The correct GitHub Actions runner label is ubuntu-24.04-arm, not ubuntu-24.04-arm64. This was causing alpine-arm64 and linux-arm64 jobs to remain permanently queued with no available runners. GitHub's ARM64 Linux runners became generally available in public repositories in 2025 with the labels: - ubuntu-22.04-arm - ubuntu-24.04-arm These runners are free for public repositories. Affected workflows: - build-smol.yml (linux-arm64, alpine-arm64) - build-sea.yml (linux-arm64, alpine-arm64) References: - https://github.blog/changelog/2025-01-16-linux-arm64-hosted-runners-now-available-for-free-in-public-repositories-public-preview/ - https://github.blog/changelog/2025-08-07-arm64-hosted-runners-for-public-repositories-are-now-generally-available/
1 parent 3c7cc0f commit 3891523

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build-sea.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129
os: linux
130130
platform: linux
131131
arch: x64
132-
- runner: ubuntu-24.04-arm64
132+
- runner: ubuntu-24.04-arm
133133
os: linux
134134
platform: linux
135135
arch: arm64
@@ -139,7 +139,7 @@ jobs:
139139
os: linux
140140
platform: alpine
141141
arch: x64
142-
- runner: ubuntu-24.04-arm64
142+
- runner: ubuntu-24.04-arm
143143
os: linux
144144
platform: alpine
145145
arch: arm64

.github/workflows/build-smol.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129
os: linux
130130
platform: linux
131131
arch: x64
132-
- runner: ubuntu-24.04-arm64
132+
- runner: ubuntu-24.04-arm
133133
os: linux
134134
platform: linux
135135
arch: arm64
@@ -139,7 +139,7 @@ jobs:
139139
os: linux
140140
platform: alpine
141141
arch: x64
142-
- runner: ubuntu-24.04-arm64
142+
- runner: ubuntu-24.04-arm
143143
os: linux
144144
platform: alpine
145145
arch: arm64

0 commit comments

Comments
 (0)