actions / runner-images
- пятница, 9 сентября 2022 г. в 00:31:49
GitHub Actions runner images
Table of Contents
This repository contains the source code used to create the VM images for GitHub-hosted runners used for Actions, as well as for Microsoft-hosted agents used for Azure Pipelines. To build a VM machine from this repo's source, see the instructions.
Image | YAML Label | Included Software | Rollout Progress of Latest Image Release |
---|---|---|---|
Ubuntu 22.04 | ubuntu-22.04 |
ubuntu-22.04 | |
Ubuntu 20.04 | ubuntu-latest or ubuntu-20.04 |
ubuntu-20.04 | |
Ubuntu 18.04 deprecated | ubuntu-18.04 |
ubuntu-18.04 | |
macOS 12 | macos-12 |
macOS-12 | |
macOS 11 | macos-latest or macos-11 |
macOS-11 | |
macOS 10.15 deprecated | macos-10.15 |
macOS-10.15 | |
Windows Server 2022 | windows-latest or windows-2022 |
windows-2022 | |
Windows Server 2019 | windows-2019 |
windows-2019 |
-latest
label is used for the latest OS image version that is GA-latest
label to a new OS version we will announce the change and give sufficient lead time for users to update their workflowsThe purpose of a Beta is to collect feedback on an image before it is released to GA. The goal of a Beta is to identify and fix any potential issues that exist on that image. Images are updated on a weekly cadence. Any workflows that run on a beta image do not fall under the customer SLA in place for Actions. Customers choosing to use Beta images are encouraged to provide feedback in the runner-images repo by creating an issue. A Beta may take on different availability, i.e. public vs private.
A GA (General Availability) image has been through a Beta period and is deemed ready for general use. Images are updated on a weekly cadence. In order to be moved to GA the image must meet the following criteria:
This image type falls under the customer SLA for actions. GA images are eventually deprecated according to our guidelines as we only support the latest 2 versions of an OS.
How to best follow along with changes
Find the latest releases for this repository here.
Subscribe to the releases coming out of this repository, instructions here.
Upcoming changes: A pre-release is created when the deployment of an image has started. As soon as the deployment is finished, the pre-release is converted to a release. If you have subscribed to releases, you will get notified of pre-releases as well.
For high impact changes, we will post these in advance to the GitHub Changelog on our blog and on twitter.
You can also view notable upcoming changes by viewing the Announcement label.
Cadence
Tools and versions will typically be removed 6 months after they are deprecated or have reached end-of-life
We support (at maximum) 2 GA images and 1 beta image at a time. We begin the deprecation process of the oldest image label once the newest OS image label has been released to GA.
The images generally contain the latest versions of packages installed except for Ubuntu LTS where we mostly rely on the Canonical-provided repositories.
Popular tools can have several versions installed side-by-side with the following strategy:
Tool name | Installation strategy |
---|---|
Docker images | not more than 3 latest LTS OS\tool versions. New images or new versions of current images are added using the standard tool request process |
Java | all LTS versions |
Node.js | 3 latest LTS versions |
Go | 3 latest minor versions |
Python Ruby |
5 most popular major.minor versions |
PyPy | 3 most popular major.minor versions |
.NET Core | 2 latest LTS versions and 1 latest version. For each feature version only latest patch is installed |
GCC GNU Fortran Clang GNU C++ |
3 latest major versions |
Android NDK | 1 latest non-LTS, 2 latest LTS versions |
Xcode | - all OS compatible versions side-by-side - for beta, GM versions - latest beta only - old patch versions are deprecated in 3 months |
In general, these are the guidelines we follow when deciding what to pre-install on our images:
The availability of images for GitHub Actions and Azure DevOps is the same. However, deprecation policies may differ. See documentation for more details:
Usually, image deployment takes 2-3 days, and documentation in the main
branch is only updated when deployment is finished. To find out which image version and what software versions are used in a specific build, see Set up job
(GitHub Actions) or Initialize job
(Azure DevOps) step log.
We do not plan to offer other Linux distributions. We recommend using Docker if you'd like to build using other distributions with the hosted runner images. Alternatively, you can leverage self-hosted runners and fully customize your VM image to your needs.
macOS source lives in this repository and is available for everyone. However, macOS image-generation CI doesn't support external contributions yet so we are not able to accept pull-requests for now.
We are in the process of preparing macOS CI to accept contributions. Until then, we appreciate your patience and ask you to continue to make tool requests by filing issues.
For some tools, we always install the latest at the time of the deployment; for others, we pin the tool to specific version(s). For more details please see the Preinstallation Policy