gitmyhub

runner-images

PowerShell ★ 13k updated 1d ago

GitHub Actions runner images

The official scripts GitHub uses to build the virtual machines that run your GitHub Actions workflows. Browse it to see exactly what software comes pre-installed on ubuntu-latest, windows-2022, or macOS runners.

PowerShellBashsetup: hardcomplexity 4/5

When you use GitHub Actions to automatically test or build your code, GitHub runs your code on a virtual machine somewhere in the cloud. This repository contains the scripts and configuration files that GitHub uses to build those virtual machines. It is maintained by GitHub's own team and is also used by Microsoft Azure's pipeline service for the same purpose.

The images available cover three operating systems: Ubuntu Linux (versions 22.04 and 24.04, plus a smaller "slim" variant), macOS (versions 14, 15, and 26, for both standard Intel chips and the newer ARM-based chips Apple uses), and Windows Server (versions 2022 and 2025). Each image comes with a large collection of programming languages, developer tools, and build utilities pre-installed, so most projects can start running code without needing to install anything first. The exact list of what is included in each image is documented in separate files linked from the README.

In your GitHub Actions workflow file, you refer to one of these images by a short label such as "ubuntu-latest" or "windows-2022". The "-latest" labels always point to the most recent stable version of that operating system. When GitHub moves the "-latest" label to a newer OS version, they announce it in advance and roll it out gradually over one to two months to give users time to update their workflows.

Images go through a lifecycle before they are widely available. A Beta period comes first, where the image is made available for testing and feedback, but is not covered by GitHub's service guarantees. After the beta period, if the image is stable and the major software on it is compatible, it moves to General Availability. GitHub supports the two most recent versions of each operating system, and older images are eventually retired.

This repository is mainly useful to people who want to understand exactly what software is on GitHub's hosted runners, report issues with a specific image, or build custom VM images using the same tooling for their own self-hosted runners.

Where it fits