CI cost figures are vendor list prices verified June 2026. Actual cost depends on plan, concurrency, and discount terms. Some links are affiliate links. See disclosure.

Last verified June 2026 · 7 min read

ARM runners: a low-effort cost lever in GitHub Actions

GITHUB-HOSTED RUNNER COST COMPARISON

x86

$0.006/min

ubuntu-latest (x86)

1x cost

=

~17%

cheaper

ARM

$0.005/min

ubuntu-24.04-arm

~0.83x cost

Alt: GitHub-hosted ARM runners bill at $0.005/min vs $0.006 for x86, about 17% cheaper.

§ 01

Why ARM is cheaper

GitHub-hosted ARM Linux runners run on AWS Graviton hardware. AWS passes through a portion of the Graviton cost advantage: ARM instances are cheaper to operate per compute unit than x86 at cloud scale, and GitHub prices ARM below the x86 Linux rate ($0.005/min vs $0.006).

This is not a temporary promotion. The ARM discount reflects the real hardware economics of running Graviton vs x86 at scale. Graviton 3 (c7g, m7g) offers competitive performance to x86 on standard web workloads while consuming approximately 60% of the power. Note the gap narrowed after the January 2026 repricing, when GitHub cut x86 from $0.008 to $0.006 while ARM held near $0.005, so the saving is now roughly 17% rather than the steeper discount ARM launched with.

The ARM runner was generally available on GitHub-hosted runners for all orgs in 2025. ARM remains the cheaper of the two Linux options, just by a smaller margin than before.

§ 02

Platform ARM availability

PlatformARM AvailableARM RateARM ImageNotes
GitHub Actions (hosted)Yes$0.005/minubuntu-24.04-arm~17% cheaper than $0.006 x86
CircleCIYesarm.medium/large creditsarm.mediumARM resource class in CircleCI
GitLab CIYes (SaaS)Included in plan minutesarm64 shared runnersAvailable on GitLab.com SaaS
BuildkiteBYO (self-host)Your EC2/GKE costAny ARM imageRun your own Graviton agent
AWS CodeBuildYes$0.004/min (arm1.small)arm1.small/mediumGraviton 2/3, AWS-native
Azure DevOpsSelf-hosted onlyYour Azure costArm64 agentNo Microsoft-hosted ARM agent
DepotYes$0.004/mindepot-ubuntu-24.04-armSame as Depot's Linux x86 rate
BlacksmithYes$0.0025/minblacksmith ARMCheapest ARM among managed providers bar Ubicloud
UbicloudYes~$0.001/minubicloud-standard-2-armLowest per-minute ARM rate, 2-vCPU standard
§ 03

When ARM works

WORKS WITHOUT CHANGES

  • Node.js / npm / pnpm / yarn builds
  • Python / pip / poetry / uv
  • Go compilation and testing
  • Rust / cargo
  • Java / Maven / Gradle
  • Ruby / bundler
  • PHP / Composer
  • Docker multi-stage builds (with buildx)
  • Most standard web application workloads

FAILURE CASES

  • Legacy C++ with x86-specific intrinsics (SSE, AVX)
  • Proprietary binaries compiled for x86 only
  • Older Electron versions before ARM64 support
  • Some ML frameworks with x86-only CUDA paths
  • Chromium-based E2E testing (improving)
  • Some Go CGo packages with x86-specific C deps

The honest counterpoint: the ~17% per-minute saving evaporates if the workload runs slower on ARM. A job that takes 1.2x the wall-clock time on ARM would cost more than x86 despite the lower rate. Always benchmark before committing. In practice most standard web workloads perform within 5-10% of x86 on ARM64, so the ~17% rate advantage is largely realised, but it is a modest lever, not a halving.

§ 04

Migration recipe

# Switch a workflow from x86 to ARM

jobs:
  build:
    # Before:
    # runs-on: ubuntu-latest

    # After: pick one of these
    runs-on: ubuntu-24.04-arm    # GitHub-hosted ARM
    # runs-on: depot-ubuntu-24.04-arm  # if using Depot
    # runs-on: blacksmith-2vcpu-ubuntu-2404-arm  # if using Blacksmith

    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-node@v4
        with:
          node-version: '22'
          cache: 'npm'
      - run: npm ci
      - run: npm test

For Docker builds, add multi-arch support with buildx:

- name: Set up Docker Buildx
  uses: docker/setup-buildx-action@v3

- name: Build and push
  uses: docker/build-push-action@v6
  with:
    platforms: linux/arm64,linux/amd64
    cache-from: type=gha
    cache-to: type=gha,mode=max
    push: true
    tags: ghcr.io/${{ github.repository }}:latest
§ 05

Cost worked example

10-DEVELOPER NODE.JS TEAM, 6,000 MIN/MONTH

x86 Linux (ubuntu-latest)6,000 x $0.006 = $36/mo
ARM Linux (ubuntu-24.04-arm)6,000 x $0.005 = $30/mo
Annual saving from ARM switch$72/year
At 100-developer scale$720/year

One hour of YAML editing for a modest ongoing saving. The per-minute discount is smaller than it was when ARM launched, but it is still free money on a pure Linux workload. The only question is whether your workload has ARM compatibility issues.

DIGITAL SIGNET · PIPELINE AUDIT

Ready to switch to ARM? We validate compatibility in two days.

Digital Signet reviews your workflow definitions, identifies ARM-incompatible steps, and delivers a migration plan with a tested YAML diff.

Get an Audit

Frequently asked questions

How much cheaper are ARM runners on GitHub Actions?+
GitHub-hosted ARM Linux runners bill at $0.005/min versus $0.006/min for x86 since the January 2026 repricing, roughly 17% cheaper. At 10,000 minutes per month that is about $10 saved every month. A real saving on a pure Linux workload, but not the half-price cut sometimes claimed.
Do ARM runners work for Node.js builds?+
Yes. Node.js, Python, Go, Rust, Java, Ruby, and PHP all run natively on ARM64 without changes to your YAML. Performance is typically within 5-10% of x86 for standard web workloads.
What breaks on ARM runners?+
Common failure cases: legacy C++ with x86-specific intrinsics, proprietary x86-only binaries, older Electron versions, some ML frameworks with x86-only CUDA, and Chromium-based E2E testing. Always benchmark on a branch before switching production workflows.
How do I switch to ARM runners on GitHub Actions?+
Change runs-on: ubuntu-latest to runs-on: ubuntu-24.04-arm. That is the entire migration for most workflows. If you use Docker builds, add buildx with multi-arch support. Test on a branch before merging.
Are external ARM runners even cheaper?+
Some are. Ubicloud lists about $0.001/min for a 2-vCPU ARM runner and Blacksmith charges $0.0025/min, both below the GitHub-hosted ARM rate ($0.005/min). Depot bills ARM at the same $0.004/min as its x86 runners, so it is below GitHub but not a discounted ARM rate. If your workload is entirely ARM Linux, Ubicloud at roughly $0.001/min is about 80% cheaper than GitHub-hosted x86 ($0.006/min); Blacksmith at $0.0025/min is about 58% cheaper.

Updated 2026-06-16