Skip to content

Runners

Avrea runners are ephemeral VMs on dedicated hardware, with colocated caching and step-level observability.

Runners are billed per minute with no minimum. See avrea.com/pricing for current rates.

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.

LabelvCPUsMemory
avrea-ubuntu-latest-1-vcpu14 GB
avrea-ubuntu-latest-2-vcpu28 GB
avrea-ubuntu-latest-4-vcpu416 GB
avrea-ubuntu-latest-8-vcpu832 GB
avrea-ubuntu-latest-16-vcpu1664 GB
avrea-ubuntu-latest-32-vcpu32128 GB
avrea-ubuntu-latest-64-vcpu64256 GB
LabelvCPUsMemory
avrea-ubuntu-latest-arm-1-vcpu14 GB
avrea-ubuntu-latest-arm-2-vcpu28 GB
avrea-ubuntu-latest-arm-4-vcpu416 GB
avrea-ubuntu-latest-arm-8-vcpu832 GB
avrea-ubuntu-latest-arm-16-vcpu1664 GB
LabelvCPUsMemory
avrea-macos-26-8-vcpu816 GB
avrea-macos-26-16-vcpu1632 GB
LabelvCPUsMemory
avrea-windows-2025-2-vcpu28 GB
avrea-windows-2025-4-vcpu416 GB
avrea-windows-2025-8-vcpu832 GB
avrea-windows-2025-16-vcpu1664 GB

Pin a specific Ubuntu version when you need stability across runner-image rollouts. Sizes 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