GitHub Actions Runner Images
Track GitHub Actions runner image versions, deprecation timelines, and YAML label changes. Know when your CI/CD workflows need updating before images are removed.
12
Runner Images
8
GA (Stable)
4
Beta / Preview
Linux Runners
ubuntu-latest
ubuntu-24.04
Available Since
1 Apr 2024
Expected Removal
—
Architecture
x64
Current ubuntu-latest image. Based on Ubuntu 24.04 LTS (Noble Numbat).
ubuntu-22.04
Available Since
1 Mar 2022
Expected Removal
1 Oct 2026 (in 7mo)
Architecture
x64
Previous ubuntu-latest. Will be removed after Ubuntu 22.04 LTS reaches end of standard support.
ubuntu-slim
Available Since
1 Jan 2025
Expected Removal
—
Architecture
x64
Minimal image with fewer pre-installed tools. Faster startup, smaller disk footprint.
macOS Runners
macos-26
macos-26-xlarge
Available Since
1 Jan 2026
Expected Removal
—
Architecture
arm64
Beta image for macOS 26. Subject to change, not covered by SLA.
macos-26-large
Available Since
1 Jan 2026
Expected Removal
—
Architecture
x64
Beta Intel image for macOS 26. Large runner only.
macos-latest
macos-15
macos-15-xlarge
Available Since
1 Sep 2024
Expected Removal
—
Architecture
arm64
Current macos-latest image (Arm64). Apple Silicon runners.
macos-latest-large
macos-15-large
macos-15-intel
Available Since
1 Sep 2024
Expected Removal
—
Architecture
x64
Current macos-latest-large image (Intel). For x64 macOS builds.
macos-14
macos-14-xlarge
Available Since
1 Oct 2023
Expected Removal
1 Sep 2026 (in 6mo)
Architecture
arm64
Previous macos-latest. Will be deprecated after macOS 14 support lifecycle ends.
macos-14-large
Available Since
1 Oct 2023
Expected Removal
1 Sep 2026 (in 6mo)
Architecture
x64
Intel variant of macOS 14. Large runner only.
Windows Runners
windows-2025-vs2026
Available Since
1 Jan 2026
Expected Removal
—
Architecture
x64
Beta image with Visual Studio 2026. Not covered by SLA.
windows-latest
windows-2025
Available Since
1 Apr 2025
Expected Removal
—
Architecture
x64
Current windows-latest image. Windows Server 2025 with Visual Studio 2022.
windows-2022
Available Since
1 Nov 2021
Expected Removal
1 Oct 2027 (in 1.6y)
Architecture
x64
Previous windows-latest. Based on Windows Server 2022 LTSC (mainstream support until Oct 2026).
Deprecated & Removed Images
Runner images that have been removed from GitHub-hosted runners. Workflows using these labels will fail.
| Image | OS | Removed | Replacement |
|---|---|---|---|
| Ubuntu 20.04 | Linux | 1 Apr 2025 | ubuntu-22.04 or ubuntu-24.04 |
| macOS 13 (Ventura) | macOS | 1 Oct 2025 | macos-14 or macos-15 |
| macOS 12 (Monterey) | macOS | 1 Dec 2024 | macos-14 or macos-15 |
| macOS 11 (Big Sur) | macOS | 28 Jun 2024 | macos-14 |
| Windows Server 2019 | Windows | 1 Jan 2025 | windows-2022 or windows-2025 |
Migration Quick Reference
Common migration paths for deprecated runner images.
Pin versions for stability
# Instead of:
runs-on: ubuntu-latest
# Pin to a specific version:
runs-on: ubuntu-24.04
Matrix strategy for multi-OS
strategy:
matrix:
os: [ubuntu-24.04, macos-15, windows-2025]
runs-on: ${{ matrix.os }}
Frequently Asked Questions
Common questions about GitHub Actions runner images and lifecycle.
What does the -latest label mean in GitHub Actions?
How often are GitHub Actions runner images updated?
What happens when a runner image is deprecated?
Should I use ubuntu-latest or pin to a specific version?
What is the difference between macOS arm64 and x64 runners?
Related Tools
Runner image data sourced from actions/runner-images and GitHub documentation. Last updated: 1 Mar 2026.