Skip to content

Runners & Pricing

Avrea runners are ephemeral VMs on dedicated hardware, with colocated caching and step-level observability. Billed per minute with no minimum.

Avrea runner images are based on the official GitHub Actions Runner Images. They come pre-installed with the same set of software as GitHub-hosted runners, including Docker, Node.js, Go, Python, Java, .NET, and more.

For the full list of installed software, see the GitHub-maintained image readmes:

Avrea images include additional tooling on top of the base GitHub images (e.g. build cache adapters). If your workflow runs on GitHub-hosted runners today, it will run on Avrea without changes.

avrea-ubuntu-latest-*-vcpu always points to the most recent supported Ubuntu LTS (currently 24.04). The bare avrea-ubuntu-latest maps to avrea-ubuntu-latest-2-vcpu — 2 vCPUs, 8 GB RAM.

Use latest unless you need to pin a specific Ubuntu version — see Pinned Ubuntu versions below.

LabelvCPUsMemoryPrice/min
avrea-ubuntu-latest-1-vcpu14 GB$0.002
avrea-ubuntu-latest-2-vcpu28 GB$0.004
avrea-ubuntu-latest-4-vcpu416 GB$0.008
avrea-ubuntu-latest-8-vcpu832 GB$0.016
avrea-ubuntu-latest-16-vcpu1664 GB$0.032
avrea-ubuntu-latest-32-vcpu32128 GB$0.064
avrea-ubuntu-latest-64-vcpu64256 GB$0.128
LabelvCPUsMemoryPrice/min
avrea-ubuntu-latest-arm-1-vcpu14 GB$0.002
avrea-ubuntu-latest-arm-2-vcpu28 GB$0.004
avrea-ubuntu-latest-arm-4-vcpu416 GB$0.008
avrea-ubuntu-latest-arm-8-vcpu832 GB$0.016
avrea-ubuntu-latest-arm-16-vcpu1664 GB$0.032
LabelvCPUsMemoryPrice/min
avrea-macos-26-6-vcpu616 GB$0.08
avrea-macos-26-12-vcpu1232 GB$0.16
LabelvCPUsMemoryPrice/min
avrea-windows-2025-2-vcpu28 GB$0.008
avrea-windows-2025-4-vcpu416 GB$0.016
avrea-windows-2025-8-vcpu832 GB$0.032
avrea-windows-2025-16-vcpu1664 GB$0.064

Pin a specific Ubuntu version when you need stability across runner-image rollouts. Sizes and pricing match the latest table above:

  • avrea-ubuntu-24.04-*-vcpu
  • avrea-ubuntu-22.04-*-vcpu

Same pattern for ARM, e.g. avrea-ubuntu-24.04-arm-4-vcpu.

Set the runner label in your workflow:

workflow.yml
jobs:
build:
runs-on: avrea-ubuntu-latest-4-vcpu
steps:
- uses: actions/checkout@v6
- run: make build