Compare commits

...
Author SHA1 Message Date
Hosted Runners Images Bot. c5c146d5a6 Updating readme file for ubuntu22 version 20260309.57.1 2026-03-11 13:37:54 +00:00
andosius d13166b30a [Ubuntu] Update Maven to 3.9.13 2026-03-09 13:43:38 +01:00
8f6f07be52 Updating readme file for macos-15 version 20260303.0227.1 (#13761)
Co-authored-by: Hosted Runners Images Bot. <[email protected]>
Co-authored-by: Actions service account <[email protected]>
2026-03-06 18:45:14 +00:00
8b8837b75e Updating readme file for macos-15-arm64 version 20260303.0188.2 (#13762)
Co-authored-by: Hosted Runners Images Bot. <[email protected]>
Co-authored-by: Actions service account <[email protected]>
2026-03-06 12:38:43 +00:00
e179364a95 Updating readme file for win25-vs2026 version 20260301.27.1 (#13755)
Co-authored-by: Hosted Runners Images Bot. <[email protected]>
Co-authored-by: Actions service account <[email protected]>
2026-03-06 11:36:51 +00:00
333c0b07b8 Updating readme file for win25 version 20260302.43.1 (#13760)
Co-authored-by: Hosted Runners Images Bot. <[email protected]>
Co-authored-by: Actions service account <[email protected]>
2026-03-06 11:36:22 +00:00
06b10bc772 Updating readme file for macos-26-arm64 version 20260303.0251.1 (#13764)
Co-authored-by: Hosted Runners Images Bot. <[email protected]>
Co-authored-by: Actions service account <[email protected]>
2026-03-06 11:26:10 +00:00
b8aa72583d Updating readme file for macos-26 version 20260303.0134.1 (#13763)
Co-authored-by: Hosted Runners Images Bot. <[email protected]>
Co-authored-by: Actions service account <[email protected]>
2026-03-05 12:00:22 +00:00
9ddb14eaa3 Updating readme file for win22 version 20260301.50.1 (#13756)
Co-authored-by: Hosted Runners Images Bot. <[email protected]>
Co-authored-by: Actions service account <[email protected]>
2026-03-05 11:55:19 +00:00
cd3f019c1f Updating readme file for ubuntu24 version 20260302.42.1 (#13754)
Co-authored-by: Hosted Runners Images Bot. <[email protected]>
Co-authored-by: Actions service account <[email protected]>
2026-03-05 11:52:38 +00:00
917b44921d Updating readme file for ubuntu22 version 20260302.50.1 (#13753)
Co-authored-by: Hosted Runners Images Bot. <[email protected]>
Co-authored-by: Actions service account <[email protected]>
2026-03-05 11:52:13 +00:00
f3b66a78c2 Updating readme file for macos-14-arm64 version 20260302.0147.1 (#13749)
Co-authored-by: Hosted Runners Images Bot. <[email protected]>
Co-authored-by: Actions service account <[email protected]>
2026-03-05 11:48:44 +00:00
efc67f6917 Updating readme file for macos-14 version 20260302.0252.1 (#13748)
Co-authored-by: Hosted Runners Images Bot. <[email protected]>
Co-authored-by: Actions service account <[email protected]>
2026-03-05 11:48:27 +00:00
Shamil Mubarakshin a54c530e8e Add OIDC auth for GenerateResourcesAndImage.ps1 (#13765) 2026-03-05 11:56:17 +01:00
Pavel Iakovenko 3c8c453258 [ubuntu] Install Agentic Workflows images (#13745) 2026-03-04 13:25:42 +01:00
15 changed files with 353 additions and 269 deletions
+89 -6
View File
@@ -66,6 +66,35 @@ Function Show-LatestCommit {
}
}
function Get-GitHubActionsOidcIdToken {
[CmdletBinding()]
param(
[Parameter(Mandatory = $True)]
[string] $RequestUrl,
[Parameter(Mandatory = $True)]
[string] $RequestToken,
[Parameter(Mandatory = $False)]
[string] $Audience = 'api://AzureADTokenExchange'
)
$separator = if ($RequestUrl -match '\?') { '&' } else { '?' }
$urlWithAudience = "${RequestUrl}${separator}audience=$([System.Uri]::EscapeDataString($Audience))"
$headers = @{ Authorization = "Bearer $RequestToken" }
try {
$response = Invoke-RestMethod -Method Get -Uri $urlWithAudience -Headers $headers
}
catch {
throw "Failed to request GitHub Actions OIDC ID token. Ensure workflow permissions include 'id-token: write'. Details: $($_.Exception.Message)"
}
if ([string]::IsNullOrEmpty($response.value)) {
throw "GitHub Actions OIDC token response did not contain a 'value' field."
}
return $response.value
}
function Start-Sleep($seconds) {
$doneDT = (Get-Date).AddSeconds($seconds)
while ($doneDT -gt (Get-Date)) {
@@ -103,6 +132,13 @@ Function GenerateResourcesAndImage {
The Azure client secret to use to authenticate with Azure. If not specified, the current user's credentials will be used.
.PARAMETER AzureTenantId
The Azure tenant id to use to authenticate with Azure. If not specified, the current user's credentials will be used.
.PARAMETER UseOidc
If set, authenticate using GitHub Actions OIDC (federated credentials) instead of a client secret.
Requires AzureClientId and AzureTenantId, and OidcRequestToken/OidcRequestUrl parameters.
.PARAMETER OidcRequestToken
GitHub Actions OIDC request token.
.PARAMETER OidcRequestUrl
GitHub Actions OIDC request URL.
.PARAMETER RestrictToAgentIpAddress
If set, access to the VM used by packer to generate the image is restricted to the public IP address this script is run from.
This parameter cannot be used in combination with the virtual_network_name packer parameter.
@@ -143,6 +179,14 @@ Function GenerateResourcesAndImage {
[Parameter(Mandatory = $False)]
[string] $AzureTenantId,
[Parameter(Mandatory = $False)]
[switch] $UseOidc,
[Parameter(Mandatory = $False)]
[ValidateNotNullOrEmpty()]
[string] $OidcRequestToken,
[Parameter(Mandatory = $False)]
[ValidateNotNullOrEmpty()]
[string] $OidcRequestUrl,
[Parameter(Mandatory = $False)]
[string] $PluginVersion = "2.2.1",
[Parameter(Mandatory = $False)]
[switch] $RestrictToAgentIpAddress,
@@ -214,10 +258,17 @@ Function GenerateResourcesAndImage {
}
Write-Host "Validating packer template..."
$validateClientSecret = "fake"
if ($UseOidc) {
$validateClientSecret = ""
}
& $PackerBinary validate `
"-only=$($PackerTemplate.BuildName).*" `
"-var=client_id=fake" `
"-var=client_secret=fake" `
"-var=client_secret=$($validateClientSecret)" `
"-var=oidc_request_token=fake" `
"-var=oidc_request_url=fake" `
"-var=subscription_id=$($SubscriptionId)" `
"-var=tenant_id=fake" `
"-var=location=$($AzureLocation)" `
@@ -239,10 +290,23 @@ Function GenerateResourcesAndImage {
Write-Verbose "No AzureClientId was provided, will use interactive login."
az login --output none
}
elseif ($UseOidc) {
if ([string]::IsNullOrEmpty($AzureTenantId)) {
throw "AzureTenantId is required for OIDC authentication."
}
Write-Verbose "Using OIDC service principal login (federated credentials)."
$idToken = Get-GitHubActionsOidcIdToken -RequestUrl $OidcRequestUrl -RequestToken $OidcRequestToken
az login --service-principal --username $AzureClientId --tenant $AzureTenantId --federated-token $idToken --output none
}
else {
Write-Verbose "AzureClientId was provided, will use service principal login."
if ([string]::IsNullOrEmpty($AzureClientSecret) -or [string]::IsNullOrEmpty($AzureTenantId)) {
throw "AzureClientSecret and AzureTenantId are required for service principal login unless -UseOidc is specified."
}
Write-Verbose "AzureClientId was provided, will use service principal login (client secret)."
az login --service-principal --username $AzureClientId --password=$AzureClientSecret --tenant $AzureTenantId --output none
}
az account set --subscription $SubscriptionId
if ($LastExitCode -ne 0) {
throw "Failed to login to Azure subscription '$SubscriptionId'."
@@ -257,7 +321,7 @@ Function GenerateResourcesAndImage {
throw "Resource group '$ResourceGroupName' does not exist."
}
# Create service principal
# Create / choose authentication for packer
if ([string]::IsNullOrEmpty($AzureClientId)) {
Write-Host "Creating service principal for packer..."
$ADCleanupRequired = $true
@@ -277,9 +341,26 @@ Function GenerateResourcesAndImage {
Write-Host "Service principal created with id '$ServicePrincipalAppId'. It will be deleted after the build."
}
else {
$ServicePrincipalAppId = $AzureClientId
$ServicePrincipalPassword = $AzureClientSecret
$TenantId = $AzureTenantId
if ($UseOidc) {
if ([string]::IsNullOrEmpty($AzureTenantId)) {
throw "AzureTenantId is required for OIDC authentication."
}
$ServicePrincipalAppId = $AzureClientId
$ServicePrincipalPassword = ""
$TenantId = $AzureTenantId
# Avoid leaking OIDC request values via command line arguments.
$env:PKR_VAR_oidc_request_token = $OidcRequestToken
$env:PKR_VAR_oidc_request_url = $OidcRequestUrl
}
else {
if ([string]::IsNullOrEmpty($AzureClientSecret) -or [string]::IsNullOrEmpty($AzureTenantId)) {
throw "AzureClientSecret and AzureTenantId are required for service principal authentication unless -UseOidc is specified."
}
$ServicePrincipalAppId = $AzureClientId
$ServicePrincipalPassword = $AzureClientSecret
$TenantId = $AzureTenantId
}
}
Write-Debug "Service principal app id: $ServicePrincipalAppId."
Write-Debug "Tenant id: $TenantId."
@@ -288,6 +369,8 @@ Function GenerateResourcesAndImage {
-only "$($PackerTemplate.BuildName).*" `
-var "client_id=$($ServicePrincipalAppId)" `
-var "client_secret=$($ServicePrincipalPassword)" `
-var "oidc_request_token=$($env:PKR_VAR_oidc_request_token)" `
-var "oidc_request_url=$($env:PKR_VAR_oidc_request_url)" `
-var "subscription_id=$($SubscriptionId)" `
-var "tenant_id=$($TenantId)" `
-var "location=$($AzureLocation)" `
+37 -38
View File
@@ -1,13 +1,12 @@
| Announcements |
|-|
| [macOS 26 (on Intel) is now available as a public beta in GitHub Actions](https://github.com/actions/runner-images/issues/13637) |
| [macOS 26 (Tahoe) is now generally available in GitHub Actions](https://github.com/actions/runner-images/issues/13739) |
| [[macOS] The macOS 14 Sonoma based runner images will begin deprecation on July 6th and will be fully unsupported by November 2nd for GitHub Actions and Azure DevOps](https://github.com/actions/runner-images/issues/13518) |
| [macOS 26 (Tahoe) is now available as a public beta in GitHub Actions](https://github.com/actions/runner-images/issues/13008) |
***
# macOS 14
- OS Version: macOS 14.8.4 (23J319)
- Kernel Version: Darwin 23.6.0
- Image Version: 20260223.0224.3
- Image Version: 20260302.0252.1
## Installed Software
@@ -31,7 +30,7 @@
- Ruby 3.3.10
### Package Management
- Bundler 4.0.6
- Bundler 4.0.7
- Carthage 0.40.0
- CocoaPods 1.16.2
- Composer 2.9.5
@@ -40,8 +39,8 @@
- NuGet 6.3.1.1
- Pip3 26.0 (python 3.14)
- Pipx 1.8.0
- RubyGems 4.0.6
- Vcpkg 2025 (build from commit 13f1e1f955)
- RubyGems 4.0.7
- Vcpkg 2026 (build from commit 62159a45e1)
- Yarn 1.22.22
### Project Management
@@ -59,7 +58,7 @@
- Curl 8.18.0
- Git 2.53.0
- Git LFS 3.7.1
- GitHub CLI 2.87.2
- GitHub CLI 2.87.3
- GNU Tar 1.35 - available by 'gtar' alias
- GNU Wget 1.25.0
- gpg (GnuPG) 2.4.9
@@ -73,15 +72,15 @@
- Ninja 1.13.2
### Tools
- AWS CLI 2.33.27
- AWS CLI 2.34.0
- AWS SAM CLI 1.154.0
- AWS Session Manager CLI 1.2.779.0
- Azure CLI 2.83.0
- Azure CLI (azure-devops) 1.0.2
- Bicep CLI 0.40.2
- Bicep CLI 0.41.2
- Cmake 4.2.3
- CodeQL Action Bundle 2.24.2
- Fastlane 2.232.1
- Fastlane 2.232.2
- SwiftFormat 0.59.1
- Xcbeautify 3.1.4
- Xcode Command Line Tools 16.2.0.0.1.1733547573
@@ -93,14 +92,14 @@
### Browsers
- Safari 26.3 (19623.2.7.18.1)
- SafariDriver 26.3 (19623.2.7.18.1)
- Google Chrome 145.0.7632.110
- Google Chrome for Testing 145.0.7632.77
- ChromeDriver 145.0.7632.77
- Microsoft Edge 145.0.3800.70
- Microsoft Edge WebDriver 145.0.3800.70
- Mozilla Firefox 147.0.4
- Google Chrome 145.0.7632.117
- Google Chrome for Testing 145.0.7632.117
- ChromeDriver 145.0.7632.117
- Microsoft Edge 145.0.3800.82
- Microsoft Edge WebDriver 145.0.3800.82
- Mozilla Firefox 148.0
- geckodriver 0.36.0
- Selenium server 4.40.0
- Selenium server 4.41.0
#### Environment variables
| Name | Value |
@@ -136,7 +135,7 @@
#### Node.js
- 20.20.0
- 22.22.0
- 24.13.1
- 24.14.0
#### Go
- 1.22.12
@@ -236,26 +235,26 @@
| DriverKit 24.2 | driverkit24.2 | 16.2 |
#### Installed Simulators
| Name | OS | Simulators |
| ------------ | ------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| iOS 17.0 | 17.0.1 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air (5th generation)<br>iPad mini (6th generation)<br>iPad Pro (11-inch) (4th generation)<br>iPad Pro (12.9-inch) (6th generation) |
| iOS 17.2 | 17.2 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air (5th generation)<br>iPad mini (6th generation)<br>iPad Pro (11-inch) (4th generation)<br>iPad Pro (12.9-inch) (6th generation) |
| iOS 17.4 | 17.4 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (6th generation)<br>iPad Pro (11-inch) (4th generation)<br>iPad Pro (12.9-inch) (6th generation)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
| iOS 17.5 | 17.5 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (6th generation)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
| iOS 18.1 | 18.1 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
| iOS 18.2 | 18.2 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
| tvOS 17.0 | 17.0 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 17.2 | 17.2 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 17.4 | 17.4 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 17.5 | 17.5 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 18.1 | 18.1 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 18.2 | 18.2 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| watchOS 10.0 | 10.0 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 5 (40mm)<br>Apple Watch Series 5 (44mm)<br>Apple Watch Series 6 (40mm)<br>Apple Watch Series 6 (44mm)<br>Apple Watch Series 7 (41mm)<br>Apple Watch Series 7 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
| watchOS 10.2 | 10.2 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 5 (40mm)<br>Apple Watch Series 5 (44mm)<br>Apple Watch Series 6 (40mm)<br>Apple Watch Series 6 (44mm)<br>Apple Watch Series 7 (41mm)<br>Apple Watch Series 7 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
| watchOS 10.4 | 10.4 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 5 (40mm)<br>Apple Watch Series 5 (44mm)<br>Apple Watch Series 6 (40mm)<br>Apple Watch Series 6 (44mm)<br>Apple Watch Series 7 (41mm)<br>Apple Watch Series 7 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
| watchOS 10.5 | 10.5 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
| watchOS 11.1 | 11.1 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 10 (42mm)<br>Apple Watch Series 10 (46mm)<br>Apple Watch Ultra 2 (49mm) |
| watchOS 11.2 | 11.2 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 10 (42mm)<br>Apple Watch Series 10 (46mm)<br>Apple Watch Ultra 2 (49mm) |
| Name | OS | Simulators |
| ------------ | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| iOS 17.0 | 17.0.1 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air (5th generation)<br>iPad mini (6th generation)<br>iPad Pro (11-inch) (4th generation)<br>iPad Pro (12.9-inch) (6th generation) |
| iOS 17.2 | 17.2 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air (5th generation)<br>iPad mini (6th generation)<br>iPad Pro (11-inch) (4th generation)<br>iPad Pro (12.9-inch) (6th generation) |
| iOS 17.4 | 17.4 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air (5th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (6th generation)<br>iPad Pro (11-inch) (4th generation)<br>iPad Pro (12.9-inch) (6th generation)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
| iOS 17.5 | 17.5 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (6th generation)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
| iOS 18.1 | 18.1 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
| iOS 18.2 | 18.2 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
| tvOS 17.0 | 17.0 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 17.2 | 17.2 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 17.4 | 17.4 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 17.5 | 17.5 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 18.1 | 18.1 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 18.2 | 18.2 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| watchOS 10.0 | 10.0 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 5 (40mm)<br>Apple Watch Series 5 (44mm)<br>Apple Watch Series 6 (40mm)<br>Apple Watch Series 6 (44mm)<br>Apple Watch Series 7 (41mm)<br>Apple Watch Series 7 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
| watchOS 10.2 | 10.2 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 5 (40mm)<br>Apple Watch Series 5 (44mm)<br>Apple Watch Series 6 (40mm)<br>Apple Watch Series 6 (44mm)<br>Apple Watch Series 7 (41mm)<br>Apple Watch Series 7 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
| watchOS 10.4 | 10.4 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 5 (40mm)<br>Apple Watch Series 5 (44mm)<br>Apple Watch Series 6 (40mm)<br>Apple Watch Series 6 (44mm)<br>Apple Watch Series 7 (41mm)<br>Apple Watch Series 7 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
| watchOS 10.5 | 10.5 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 5 (40mm)<br>Apple Watch Series 5 (44mm)<br>Apple Watch Series 6 (40mm)<br>Apple Watch Series 6 (44mm)<br>Apple Watch Series 7 (41mm)<br>Apple Watch Series 7 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
| watchOS 11.1 | 11.1 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 10 (42mm)<br>Apple Watch Series 10 (46mm)<br>Apple Watch Ultra 2 (49mm) |
| watchOS 11.2 | 11.2 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 10 (42mm)<br>Apple Watch Series 10 (46mm)<br>Apple Watch Ultra 2 (49mm) |
### Android
| Package Name | Version |
+13 -14
View File
@@ -1,13 +1,12 @@
| Announcements |
|-|
| [macOS 26 (on Intel) is now available as a public beta in GitHub Actions](https://github.com/actions/runner-images/issues/13637) |
| [macOS 26 (Tahoe) is now generally available in GitHub Actions](https://github.com/actions/runner-images/issues/13739) |
| [[macOS] The macOS 14 Sonoma based runner images will begin deprecation on July 6th and will be fully unsupported by November 2nd for GitHub Actions and Azure DevOps](https://github.com/actions/runner-images/issues/13518) |
| [macOS 26 (Tahoe) is now available as a public beta in GitHub Actions](https://github.com/actions/runner-images/issues/13008) |
***
# macOS 14
- OS Version: macOS 14.8.4 (23J319)
- Kernel Version: Darwin 23.6.0
- Image Version: 20260224.0137.1
- Image Version: 20260302.0147.1
## Installed Software
@@ -30,7 +29,7 @@
- Ruby 3.3.10
### Package Management
- Bundler 4.0.6
- Bundler 4.0.7
- Carthage 0.40.0
- CocoaPods 1.16.2
- Homebrew 5.0.15
@@ -38,8 +37,8 @@
- NuGet 6.3.1.1
- Pip3 26.0 (python 3.14)
- Pipx 1.8.0
- RubyGems 4.0.6
- Vcpkg 2025 (build from commit b42b19a62b)
- RubyGems 4.0.7
- Vcpkg 2026 (build from commit 62159a45e1)
- Yarn 1.22.22
### Project Management
@@ -71,15 +70,15 @@
- Ninja 1.13.2
### Tools
- AWS CLI 2.33.28
- AWS CLI 2.34.0
- AWS SAM CLI 1.154.0
- AWS Session Manager CLI 1.2.779.0
- Azure CLI 2.83.0
- Azure CLI (azure-devops) 1.0.2
- Bicep CLI 0.40.2
- Bicep CLI 0.41.2
- Cmake 4.2.3
- CodeQL Action Bundle 2.24.2
- Fastlane 2.232.1
- Fastlane 2.232.2
- SwiftFormat 0.59.1
- Xcbeautify 3.1.4
- Xcode Command Line Tools 16.2.0.0.1.1733547573
@@ -91,11 +90,11 @@
- Google Chrome 145.0.7632.117
- Google Chrome for Testing 145.0.7632.117
- ChromeDriver 145.0.7632.117
- Microsoft Edge 145.0.3800.70
- Microsoft Edge WebDriver 145.0.3800.70
- Mozilla Firefox 147.0.4
- Microsoft Edge 145.0.3800.82
- Microsoft Edge WebDriver 145.0.3800.82
- Mozilla Firefox 148.0
- geckodriver 0.36.0
- Selenium server 4.40.0
- Selenium server 4.41.0
#### Environment variables
| Name | Value |
@@ -129,7 +128,7 @@
#### Node.js
- 20.20.0
- 22.22.0
- 24.13.1
- 24.14.0
#### Go
- 1.22.12
+27 -28
View File
@@ -1,13 +1,12 @@
| Announcements |
|-|
| [macOS 26 (on Intel) is now available as a public beta in GitHub Actions](https://github.com/actions/runner-images/issues/13637) |
| [macOS 26 (Tahoe) is now generally available in GitHub Actions](https://github.com/actions/runner-images/issues/13739) |
| [[macOS] The macOS 14 Sonoma based runner images will begin deprecation on July 6th and will be fully unsupported by November 2nd for GitHub Actions and Azure DevOps](https://github.com/actions/runner-images/issues/13518) |
| [macOS 26 (Tahoe) is now available as a public beta in GitHub Actions](https://github.com/actions/runner-images/issues/13008) |
***
# macOS 15
- OS Version: macOS 15.7.4 (24G517)
- Kernel Version: Darwin 24.6.0
- Image Version: 20260224.0198.1
- Image Version: 20260303.0227.1
## Installed Software
@@ -30,16 +29,16 @@
- Ruby 3.3.10
### Package Management
- Bundler 4.0.6
- Bundler 4.0.7
- Carthage 0.40.0
- CocoaPods 1.16.2
- Composer 2.9.5
- Homebrew 5.0.15
- Homebrew 5.0.16
- NPM 10.9.4
- Pip3 26.0 (python 3.14)
- Pipx 1.8.0
- RubyGems 4.0.6
- Vcpkg 2025 (build from commit b42b19a62b)
- RubyGems 4.0.7
- Vcpkg 2026 (build from commit 39a6cc0e44)
- Yarn 1.22.22
### Project Management
@@ -71,15 +70,15 @@
- Ninja 1.13.2
### Tools
- AWS CLI 2.33.28
- AWS CLI 2.34.0
- AWS SAM CLI 1.154.0
- AWS Session Manager CLI 1.2.779.0
- Azure CLI 2.83.0
- Azure CLI 2.84.0
- Azure CLI (azure-devops) 1.0.2
- Bicep CLI 0.40.2
- Bicep CLI 0.41.2
- Cmake 4.2.3
- CodeQL Action Bundle 2.24.2
- Fastlane 2.232.1
- Fastlane 2.232.2
- SwiftFormat 0.59.1
- Xcbeautify 3.1.4
- Xcode Command Line Tools 16.4.0.0.1.1747106510
@@ -94,11 +93,11 @@
- Google Chrome 145.0.7632.117
- Google Chrome for Testing 145.0.7632.117
- ChromeDriver 145.0.7632.117
- Microsoft Edge 145.0.3800.70
- Microsoft Edge WebDriver 145.0.3800.70
- Mozilla Firefox 147.0.4
- Microsoft Edge 145.0.3800.82
- Microsoft Edge WebDriver 145.0.3800.82
- Mozilla Firefox 148.0
- geckodriver 0.36.0
- Selenium server 4.40.0
- Selenium server 4.41.0
#### Environment variables
| Name | Value |
@@ -133,7 +132,7 @@
#### Node.js
- 20.20.0
- 22.22.0
- 24.13.1
- 24.14.0
#### Go
- 1.22.12
@@ -160,17 +159,17 @@
- PSScriptAnalyzer: 1.24.0
### Xcode
| Version | Build | Path | Symlinks |
| -------------- | -------- | ------------------------------------------------ | -------------------------------------------------------------- |
| 26.3 | 17C528 | /Applications/Xcode_26.3_Release_Candidate_2.app | /Applications/Xcode_26.3.0.app<br>/Applications/Xcode_26.3.app |
| 26.2 | 17C52 | /Applications/Xcode_26.2.app | /Applications/Xcode_26.2.0.app |
| 26.1.1 | 17B100 | /Applications/Xcode_26.1.1.app | /Applications/Xcode_26.1.app |
| 26.0.1 | 17A400 | /Applications/Xcode_26.0.1.app | /Applications/Xcode_26.0.app |
| 16.4 (default) | 16F6 | /Applications/Xcode_16.4.app | /Applications/Xcode_16.4.0.app<br>/Applications/Xcode.app |
| 16.3 | 16E140 | /Applications/Xcode_16.3.app | /Applications/Xcode_16.3.0.app |
| 16.2 | 16C5032a | /Applications/Xcode_16.2.app | /Applications/Xcode_16.2.0.app |
| 16.1 | 16B40 | /Applications/Xcode_16.1.app | /Applications/Xcode_16.1.0.app |
| 16.0 | 16A242d | /Applications/Xcode_16.app | /Applications/Xcode_16.0.0.app<br>/Applications/Xcode_16.0.app |
| Version | Build | Path | Symlinks |
| -------------- | -------- | ------------------------------ | -------------------------------------------------------------- |
| 26.3 | 17C529 | /Applications/Xcode_26.3.app | /Applications/Xcode_26.3.0.app |
| 26.2 | 17C52 | /Applications/Xcode_26.2.app | /Applications/Xcode_26.2.0.app |
| 26.1.1 | 17B100 | /Applications/Xcode_26.1.1.app | /Applications/Xcode_26.1.app |
| 26.0.1 | 17A400 | /Applications/Xcode_26.0.1.app | /Applications/Xcode_26.0.app |
| 16.4 (default) | 16F6 | /Applications/Xcode_16.4.app | /Applications/Xcode_16.4.0.app<br>/Applications/Xcode.app |
| 16.3 | 16E140 | /Applications/Xcode_16.3.app | /Applications/Xcode_16.3.0.app |
| 16.2 | 16C5032a | /Applications/Xcode_16.2.app | /Applications/Xcode_16.2.0.app |
| 16.1 | 16B40 | /Applications/Xcode_16.1.app | /Applications/Xcode_16.1.0.app |
| 16.0 | 16A242d | /Applications/Xcode_16.app | /Applications/Xcode_16.0.0.app<br>/Applications/Xcode_16.0.app |
#### Installed SDKs
| SDK | SDK Name | Xcode Version |
@@ -278,7 +277,7 @@
| Android Emulator | 36.4.9 |
| Android SDK Build-tools | 36.0.0 36.1.0<br>35.0.0 35.0.1 |
| Android SDK Platforms | android-36.1 (rev 1)<br>android-36-ext19 (rev 1)<br>android-36-ext18 (rev 1)<br>android-36 (rev 2)<br>android-35-ext15 (rev 1)<br>android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3) |
| Android SDK Platform-Tools | 36.0.2 |
| Android SDK Platform-Tools | 37.0.0 |
| Android Support Repository | 47.0.0 |
| CMake | 3.31.5<br>4.1.2 |
| Google Play services | 49 |
+27 -28
View File
@@ -1,13 +1,12 @@
| Announcements |
|-|
| [macOS 26 (on Intel) is now available as a public beta in GitHub Actions](https://github.com/actions/runner-images/issues/13637) |
| [macOS 26 (Tahoe) is now generally available in GitHub Actions](https://github.com/actions/runner-images/issues/13739) |
| [[macOS] The macOS 14 Sonoma based runner images will begin deprecation on July 6th and will be fully unsupported by November 2nd for GitHub Actions and Azure DevOps](https://github.com/actions/runner-images/issues/13518) |
| [macOS 26 (Tahoe) is now available as a public beta in GitHub Actions](https://github.com/actions/runner-images/issues/13008) |
***
# macOS 15
- OS Version: macOS 15.7.4 (24G517)
- Kernel Version: Darwin 24.6.0
- Image Version: 20260224.0170.1
- Image Version: 20260303.0188.2
## Installed Software
@@ -29,15 +28,15 @@
- Ruby 3.3.10
### Package Management
- Bundler 4.0.6
- Bundler 4.0.7
- Carthage 0.40.0
- CocoaPods 1.16.2
- Homebrew 5.0.15
- Homebrew 5.0.16
- NPM 10.9.4
- Pip3 26.0 (python 3.14)
- Pipx 1.8.0
- RubyGems 4.0.6
- Vcpkg 2025 (build from commit b42b19a62b)
- RubyGems 4.0.7
- Vcpkg 2026 (build from commit 39a6cc0e44)
- Yarn 1.22.22
### Project Management
@@ -69,15 +68,15 @@
- Ninja 1.13.2
### Tools
- AWS CLI 2.33.28
- AWS CLI 2.34.0
- AWS SAM CLI 1.154.0
- AWS Session Manager CLI 1.2.779.0
- Azure CLI 2.83.0
- Azure CLI 2.84.0
- Azure CLI (azure-devops) 1.0.2
- Bicep CLI 0.40.2
- Bicep CLI 0.41.2
- Cmake 4.2.3
- CodeQL Action Bundle 2.24.2
- Fastlane 2.232.1
- Fastlane 2.232.2
- SwiftFormat 0.59.1
- Xcbeautify 3.1.4
- Xcode Command Line Tools 16.4.0.0.1.1747106510
@@ -89,11 +88,11 @@
- Google Chrome 145.0.7632.117
- Google Chrome for Testing 145.0.7632.117
- ChromeDriver 145.0.7632.117
- Microsoft Edge 145.0.3800.70
- Microsoft Edge WebDriver 145.0.3800.70
- Mozilla Firefox 147.0.4
- Microsoft Edge 145.0.3800.82
- Microsoft Edge WebDriver 145.0.3800.82
- Mozilla Firefox 148.0
- geckodriver 0.36.0
- Selenium server 4.40.0
- Selenium server 4.41.0
#### Environment variables
| Name | Value |
@@ -127,7 +126,7 @@
#### Node.js
- 20.20.0
- 22.22.0
- 24.13.1
- 24.14.0
#### Go
- 1.22.12
@@ -154,17 +153,17 @@
- PSScriptAnalyzer: 1.24.0
### Xcode
| Version | Build | Path | Symlinks |
| -------------- | -------- | ------------------------------------------------ | -------------------------------------------------------------- |
| 26.3 | 17C528 | /Applications/Xcode_26.3_Release_Candidate_2.app | /Applications/Xcode_26.3.0.app<br>/Applications/Xcode_26.3.app |
| 26.2 | 17C52 | /Applications/Xcode_26.2.app | /Applications/Xcode_26.2.0.app |
| 26.1.1 | 17B100 | /Applications/Xcode_26.1.1.app | /Applications/Xcode_26.1.app |
| 26.0.1 | 17A400 | /Applications/Xcode_26.0.1.app | /Applications/Xcode_26.0.app |
| 16.4 (default) | 16F6 | /Applications/Xcode_16.4.app | /Applications/Xcode_16.4.0.app<br>/Applications/Xcode.app |
| 16.3 | 16E140 | /Applications/Xcode_16.3.app | /Applications/Xcode_16.3.0.app |
| 16.2 | 16C5032a | /Applications/Xcode_16.2.app | /Applications/Xcode_16.2.0.app |
| 16.1 | 16B40 | /Applications/Xcode_16.1.app | /Applications/Xcode_16.1.0.app |
| 16.0 | 16A242d | /Applications/Xcode_16.app | /Applications/Xcode_16.0.0.app<br>/Applications/Xcode_16.0.app |
| Version | Build | Path | Symlinks |
| -------------- | -------- | ------------------------------ | -------------------------------------------------------------- |
| 26.3 | 17C529 | /Applications/Xcode_26.3.app | /Applications/Xcode_26.3.0.app |
| 26.2 | 17C52 | /Applications/Xcode_26.2.app | /Applications/Xcode_26.2.0.app |
| 26.1.1 | 17B100 | /Applications/Xcode_26.1.1.app | /Applications/Xcode_26.1.app |
| 26.0.1 | 17A400 | /Applications/Xcode_26.0.1.app | /Applications/Xcode_26.0.app |
| 16.4 (default) | 16F6 | /Applications/Xcode_16.4.app | /Applications/Xcode_16.4.0.app<br>/Applications/Xcode.app |
| 16.3 | 16E140 | /Applications/Xcode_16.3.app | /Applications/Xcode_16.3.0.app |
| 16.2 | 16C5032a | /Applications/Xcode_16.2.app | /Applications/Xcode_16.2.0.app |
| 16.1 | 16B40 | /Applications/Xcode_16.1.app | /Applications/Xcode_16.1.0.app |
| 16.0 | 16A242d | /Applications/Xcode_16.app | /Applications/Xcode_16.0.0.app<br>/Applications/Xcode_16.0.app |
#### Installed SDKs
| SDK | SDK Name | Xcode Version |
@@ -277,7 +276,7 @@
| Android Emulator | 36.4.9 |
| Android SDK Build-tools | 36.0.0 36.1.0<br>35.0.0 35.0.1 |
| Android SDK Platforms | android-36.1 (rev 1)<br>android-36-ext19 (rev 1)<br>android-36-ext18 (rev 1)<br>android-36 (rev 2)<br>android-35-ext15 (rev 1)<br>android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3) |
| Android SDK Platform-Tools | 36.0.2 |
| Android SDK Platform-Tools | 37.0.0 |
| Android Support Repository | 47.0.0 |
| CMake | 3.31.5<br>4.1.2 |
| Google Play services | 49 |
+26 -27
View File
@@ -1,13 +1,12 @@
| Announcements |
|-|
| [macOS 26 (on Intel) is now available as a public beta in GitHub Actions](https://github.com/actions/runner-images/issues/13637) |
| [macOS 26 (Tahoe) is now generally available in GitHub Actions](https://github.com/actions/runner-images/issues/13739) |
| [[macOS] The macOS 14 Sonoma based runner images will begin deprecation on July 6th and will be fully unsupported by November 2nd for GitHub Actions and Azure DevOps](https://github.com/actions/runner-images/issues/13518) |
| [macOS 26 (Tahoe) is now available as a public beta in GitHub Actions](https://github.com/actions/runner-images/issues/13008) |
***
# macOS 26
- OS Version: macOS 26.3 (25D125)
- Kernel Version: Darwin 25.3.0
- Image Version: 20260224.0101.1
- Image Version: 20260303.0134.1
## Installed Software
@@ -23,23 +22,23 @@
- GNU Fortran 14 (Homebrew GCC 14.3.0) - available by `gfortran-14` alias
- GNU Fortran 15 (Homebrew GCC 15.2.0_1) - available by `gfortran-15` alias
- Kotlin 2.3.10-release-465
- Node.js 24.13.1
- Node.js 24.14.0
- Perl 5.42.0
- PHP 8.5.3
- Python3 3.14.3
- Ruby 3.4.8
### Package Management
- Bundler 4.0.6
- Bundler 4.0.7
- Carthage 0.40.0
- CocoaPods 1.16.2
- Composer 2.9.5
- Homebrew 5.0.15
- NPM 11.8.0
- Homebrew 5.0.16
- NPM 11.9.0
- Pip3 26.0 (python 3.14)
- Pipx 1.8.0
- RubyGems 4.0.6
- Vcpkg 2025 (build from commit b42b19a62b)
- RubyGems 4.0.7
- Vcpkg 2026 (build from commit 39a6cc0e44)
- Yarn 1.22.22
### Project Management
@@ -71,18 +70,18 @@
- Ninja 1.13.2
### Tools
- AWS CLI 2.33.28
- AWS CLI 2.34.0
- AWS SAM CLI 1.154.0
- AWS Session Manager CLI 1.2.779.0
- Azure CLI 2.83.0
- Azure CLI 2.84.0
- Azure CLI (azure-devops) 1.0.2
- Bicep CLI 0.40.2
- Bicep CLI 0.41.2
- Cmake 4.2.3
- CodeQL Action Bundle 2.24.2
- Fastlane 2.232.1
- Fastlane 2.232.2
- SwiftFormat 0.59.1
- Xcbeautify 3.1.4
- Xcode Command Line Tools 26.2.0.0.1.1764812424
- Xcode Command Line Tools 26.3.0.0.1.1771626560
- Xcodes 1.6.2
### Linters
@@ -94,11 +93,11 @@
- Google Chrome 145.0.7632.117
- Google Chrome for Testing 145.0.7632.117
- ChromeDriver 145.0.7632.117
- Microsoft Edge 145.0.3800.70
- Microsoft Edge WebDriver 145.0.3800.70
- Mozilla Firefox 147.0.4
- Microsoft Edge 145.0.3800.82
- Microsoft Edge WebDriver 145.0.3800.82
- Mozilla Firefox 148.0
- geckodriver 0.36.0
- Selenium server 4.40.0
- Selenium server 4.41.0
#### Environment variables
| Name | Value |
@@ -132,7 +131,7 @@
#### Node.js
- 20.20.0
- 22.22.0
- 24.13.1
- 24.14.0
#### Go
- 1.23.12
@@ -158,13 +157,13 @@
- PSScriptAnalyzer: 1.24.0
### Xcode
| Version | Build | Path | Symlinks |
| -------------- | -------- | ------------------------------------------------ | -------------------------------------------------------------- |
| 26.4 (beta) | 17E5159k | /Applications/Xcode_26.4_beta.app | /Applications/Xcode_26.4.0.app<br>/Applications/Xcode_26.4.app |
| 26.3 | 17C528 | /Applications/Xcode_26.3_Release_Candidate_2.app | /Applications/Xcode_26.3.0.app<br>/Applications/Xcode_26.3.app |
| 26.2 (default) | 17C52 | /Applications/Xcode_26.2.app | /Applications/Xcode_26.2.0.app<br>/Applications/Xcode.app |
| 26.1.1 | 17B100 | /Applications/Xcode_26.1.1.app | /Applications/Xcode_26.1.app |
| 26.0.1 | 17A400 | /Applications/Xcode_26.0.1.app | /Applications/Xcode_26.0.app |
| Version | Build | Path | Symlinks |
| -------------- | -------- | ----------------------------------- | -------------------------------------------------------------- |
| 26.4 (beta) | 17E5170d | /Applications/Xcode_26.4_beta_2.app | /Applications/Xcode_26.4.0.app<br>/Applications/Xcode_26.4.app |
| 26.3 | 17C529 | /Applications/Xcode_26.3.app | /Applications/Xcode_26.3.0.app |
| 26.2 (default) | 17C52 | /Applications/Xcode_26.2.app | /Applications/Xcode_26.2.0.app<br>/Applications/Xcode.app |
| 26.1.1 | 17B100 | /Applications/Xcode_26.1.1.app | /Applications/Xcode_26.1.app |
| 26.0.1 | 17A400 | /Applications/Xcode_26.0.1.app | /Applications/Xcode_26.0.app |
#### Installed SDKs
| SDK | SDK Name | Xcode Version |
@@ -230,7 +229,7 @@
| Android Emulator | 36.4.9 |
| Android SDK Build-tools | 36.0.0 36.1.0<br>35.0.0 35.0.1 |
| Android SDK Platforms | android-36.1 (rev 1)<br>android-36-ext19 (rev 1)<br>android-36-ext18 (rev 1)<br>android-36 (rev 2)<br>android-35-ext15 (rev 1)<br>android-35-ext14 (rev 1)<br>android-35 (rev 2) |
| Android SDK Platform-Tools | 36.0.2 |
| Android SDK Platform-Tools | 37.0.0 |
| Android Support Repository | 47.0.0 |
| CMake | 3.31.5<br>4.1.2 |
| Google Play services | 49 |
+26 -27
View File
@@ -1,13 +1,12 @@
| Announcements |
|-|
| [macOS 26 (on Intel) is now available as a public beta in GitHub Actions](https://github.com/actions/runner-images/issues/13637) |
| [macOS 26 (Tahoe) is now generally available in GitHub Actions](https://github.com/actions/runner-images/issues/13739) |
| [[macOS] The macOS 14 Sonoma based runner images will begin deprecation on July 6th and will be fully unsupported by November 2nd for GitHub Actions and Azure DevOps](https://github.com/actions/runner-images/issues/13518) |
| [macOS 26 (Tahoe) is now available as a public beta in GitHub Actions](https://github.com/actions/runner-images/issues/13008) |
***
# macOS 26
- OS Version: macOS 26.3 (25D125)
- Kernel Version: Darwin 25.3.0
- Image Version: 20260224.0231.1
- Image Version: 20260303.0251.1
## Installed Software
@@ -23,21 +22,21 @@
- GNU Fortran 14 (Homebrew GCC 14.3.0) - available by `gfortran-14` alias
- GNU Fortran 15 (Homebrew GCC 15.2.0_1) - available by `gfortran-15` alias
- Kotlin 2.3.10-release-465
- Node.js 24.13.1
- Node.js 24.14.0
- Perl 5.42.0
- Python3 3.14.3
- Ruby 3.4.8
### Package Management
- Bundler 4.0.6
- Bundler 4.0.7
- Carthage 0.40.0
- CocoaPods 1.16.2
- Homebrew 5.0.15
- NPM 11.8.0
- Homebrew 5.0.16
- NPM 11.9.0
- Pip3 26.0 (python 3.14)
- Pipx 1.8.0
- RubyGems 4.0.6
- Vcpkg 2025 (build from commit b42b19a62b)
- RubyGems 4.0.7
- Vcpkg 2026 (build from commit 39a6cc0e44)
- Yarn 1.22.22
### Project Management
@@ -69,18 +68,18 @@
- Ninja 1.13.2
### Tools
- AWS CLI 2.33.28
- AWS CLI 2.34.0
- AWS SAM CLI 1.154.0
- AWS Session Manager CLI 1.2.779.0
- Azure CLI 2.83.0
- Azure CLI 2.84.0
- Azure CLI (azure-devops) 1.0.2
- Bicep CLI 0.40.2
- Bicep CLI 0.41.2
- Cmake 4.2.3
- CodeQL Action Bundle 2.24.2
- Fastlane 2.232.1
- Fastlane 2.232.2
- SwiftFormat 0.59.1
- Xcbeautify 3.1.4
- Xcode Command Line Tools 26.2.0.0.1.1764812424
- Xcode Command Line Tools 26.3.0.0.1.1771626560
- Xcodes 1.6.2
### Browsers
@@ -89,11 +88,11 @@
- Google Chrome 145.0.7632.117
- Google Chrome for Testing 145.0.7632.117
- ChromeDriver 145.0.7632.117
- Microsoft Edge 145.0.3800.70
- Microsoft Edge WebDriver 145.0.3800.70
- Mozilla Firefox 147.0.4
- Microsoft Edge 145.0.3800.82
- Microsoft Edge WebDriver 145.0.3800.82
- Mozilla Firefox 148.0
- geckodriver 0.36.0
- Selenium server 4.40.0
- Selenium server 4.41.0
#### Environment variables
| Name | Value |
@@ -127,7 +126,7 @@
#### Node.js
- 20.20.0
- 22.22.0
- 24.13.1
- 24.14.0
#### Go
- 1.23.12
@@ -153,13 +152,13 @@
- PSScriptAnalyzer: 1.24.0
### Xcode
| Version | Build | Path | Symlinks |
| -------------- | -------- | ------------------------------------------------ | -------------------------------------------------------------- |
| 26.4 (beta) | 17E5159k | /Applications/Xcode_26.4_beta.app | /Applications/Xcode_26.4.0.app<br>/Applications/Xcode_26.4.app |
| 26.3 | 17C528 | /Applications/Xcode_26.3_Release_Candidate_2.app | /Applications/Xcode_26.3.0.app<br>/Applications/Xcode_26.3.app |
| 26.2 (default) | 17C52 | /Applications/Xcode_26.2.app | /Applications/Xcode_26.2.0.app<br>/Applications/Xcode.app |
| 26.1.1 | 17B100 | /Applications/Xcode_26.1.1.app | /Applications/Xcode_26.1.app |
| 26.0.1 | 17A400 | /Applications/Xcode_26.0.1.app | /Applications/Xcode_26.0.app |
| Version | Build | Path | Symlinks |
| -------------- | -------- | ----------------------------------- | -------------------------------------------------------------- |
| 26.4 (beta) | 17E5170d | /Applications/Xcode_26.4_beta_2.app | /Applications/Xcode_26.4.0.app<br>/Applications/Xcode_26.4.app |
| 26.3 | 17C529 | /Applications/Xcode_26.3.app | /Applications/Xcode_26.3.0.app |
| 26.2 (default) | 17C52 | /Applications/Xcode_26.2.app | /Applications/Xcode_26.2.0.app<br>/Applications/Xcode.app |
| 26.1.1 | 17B100 | /Applications/Xcode_26.1.1.app | /Applications/Xcode_26.1.app |
| 26.0.1 | 17A400 | /Applications/Xcode_26.0.1.app | /Applications/Xcode_26.0.app |
#### Installed SDKs
| SDK | SDK Name | Xcode Version |
@@ -228,7 +227,7 @@
| Android Emulator | 36.4.9 |
| Android SDK Build-tools | 36.0.0 36.1.0<br>35.0.0 35.0.1 |
| Android SDK Platforms | android-36.1 (rev 1)<br>android-36-ext19 (rev 1)<br>android-36-ext18 (rev 1)<br>android-36 (rev 2)<br>android-35-ext15 (rev 1)<br>android-35-ext14 (rev 1)<br>android-35 (rev 2) |
| Android SDK Platform-Tools | 36.0.2 |
| Android SDK Platform-Tools | 37.0.0 |
| Android Support Repository | 47.0.0 |
| CMake | 3.31.5<br>4.1.2 |
| Google Play services | 49 |
+46 -46
View File
@@ -5,7 +5,7 @@
# Ubuntu 22.04
- OS Version: 22.04.5 LTS
- Kernel Version: 6.8.0-1044-azure
- Image Version: 20260224.45.1
- Image Version: 20260309.57.1
- Systemd version: 249.11-0ubuntu3.17
## Installed Software
@@ -22,24 +22,24 @@
- Kotlin 2.3.10-release-465
- Mono 6.12.0.200
- MSBuild 16.10.1.31701 (Mono 6.12.0.200)
- Node.js 20.20.0
- Node.js 20.20.1
- Perl 5.34.0
- Python 3.10.12
- Ruby 3.0.2p107
- Swift 6.2.3
- Swift 6.2.4
### Package Management
- cpan 1.64
- Helm 3.20.0
- Homebrew 5.0.15
- Miniconda 25.11.1
- Homebrew 5.0.16
- Miniconda 26.1.1
- Npm 10.8.2
- NuGet 6.6.1.2
- Pip 22.0.2
- Pip3 22.0.2
- Pipx 1.8.0
- RubyGems 3.3.5
- Vcpkg (build from commit 26283ac5e8)
- Vcpkg (build from commit 751fdf7bbc)
- Yarn 1.22.22
#### Environment variables
@@ -58,10 +58,10 @@ to accomplish this.
### Project Management
- Ant 1.10.12
- Gradle 9.3.1
- Lerna 9.0.4
- Maven 3.9.12
- Sbt 1.12.4
- Gradle 9.4.0
- Lerna 9.0.5
- Maven 3.9.13
- Sbt 1.12.5
### Tools
- Ansible 2.17.14
@@ -69,16 +69,16 @@ to accomplish this.
- AzCopy 10.32.1 - available by `azcopy` and `azcopy10` aliases
- Bazel 9.0.0
- Bazelisk 1.28.1
- Bicep 0.40.2
- Bicep 0.41.2
- Buildah 1.23.1
- CMake 3.31.6
- CodeQL Action Bundle 2.24.2
- Docker Amazon ECR Credential Helper 0.11.0
- CodeQL Action Bundle 2.24.3
- Docker Amazon ECR Credential Helper 0.12.0
- Docker Compose v2 2.38.2
- Docker-Buildx 0.31.1
- Docker-Buildx 0.32.1
- Docker Client 28.0.4
- Docker Server 28.0.4
- Fastlane 2.232.1
- Fastlane 2.232.2
- Git 2.53.0
- Git LFS 3.7.1
- Git-ftp 1.6.0
@@ -86,7 +86,7 @@ to accomplish this.
- Heroku 10.17.0
- jq 1.6
- Kind 0.31.0
- Kubectl 1.35.1
- Kubectl 1.35.2
- Kustomize 5.8.1
- Leiningen 2.12.0
- MediaInfo 21.09
@@ -99,30 +99,30 @@ to accomplish this.
- Packer 1.15.0
- Parcel 2.16.4
- Podman 3.4.4
- Pulumi 3.223.0
- Pulumi 3.225.1
- R 4.5.2
- Skopeo 1.4.1
- Sphinx Open Source Search Server 2.2.11
- SVN 1.14.1
- Terraform 1.14.5
- Terraform 1.14.6
- yamllint 1.38.0
- yq 4.52.4
- zstd 1.5.7
- Ninja 1.13.2
### CLI Tools
- Alibaba Cloud CLI 3.2.9
- AWS CLI 2.33.29
- Alibaba Cloud CLI 3.2.12
- AWS CLI 2.34.5
- AWS CLI Session Manager Plugin 1.2.779.0
- AWS SAM CLI 1.154.0
- Azure CLI 2.83.0
- AWS SAM CLI 1.155.2
- Azure CLI 2.84.0
- Azure CLI (azure-devops) 1.0.2
- GitHub CLI 2.87.3
- Google Cloud CLI 558.0.0
- Netlify CLI 24.0.0
- OpenShift CLI 4.21.3
- Google Cloud CLI 559.0.0
- Netlify CLI 24.0.1
- OpenShift CLI 4.21.4
- ORAS CLI 1.3.0
- Vercel CLI 50.23.2
- Vercel CLI 50.29.0
### Java
| Version | Environment Variable |
@@ -148,27 +148,27 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
- Stack 3.9.3
### Rust Tools
- Cargo 1.93.1
- Rust 1.93.1
- Rustdoc 1.93.1
- Cargo 1.94.0
- Rust 1.94.0
- Rustdoc 1.94.0
- Rustup 1.28.2
#### Packages
- Bindgen 0.72.1
- Cargo audit 0.22.1
- Cargo clippy 0.1.93
- Cargo clippy 0.1.94
- Cargo outdated 0.17.0
- Cbindgen 0.29.2
- Rustfmt 1.8.0
### Browsers and Drivers
- Google Chrome 145.0.7632.116
- Google Chrome 145.0.7632.159
- ChromeDriver 145.0.7632.117
- Chromium 145.0.7632.0
- Microsoft Edge 145.0.3800.70
- Microsoft Edge WebDriver 145.0.3800.70
- Microsoft Edge 145.0.3800.97
- Microsoft Edge WebDriver 145.0.3800.97
- Selenium server 4.41.0
- Mozilla Firefox 147.0.4
- Mozilla Firefox 148.0
- Geckodriver 0.36.0
#### Environment variables
@@ -187,7 +187,7 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
- sqlite3 3.37.2
#### PostgreSQL
- PostgreSQL 14.21
- PostgreSQL 14.22
```
User: postgres
PostgreSQL service is disabled by default.
@@ -213,17 +213,17 @@ Use the following command as a part of your job to start the service: 'sudo syst
- 1.22.12
- 1.23.12
- 1.24.13
- 1.25.7
- 1.25.8
#### Node.js
- 20.20.0
- 22.22.0
- 24.13.1
- 20.20.1
- 22.22.1
- 24.14.0
#### Python
- 3.10.19
- 3.11.14
- 3.12.12
- 3.10.20
- 3.11.15
- 3.12.13
- 3.13.12
- 3.14.3
@@ -261,7 +261,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Android Command Line Tools | 9.0 |
| Android SDK Build-tools | 36.0.0 36.1.0<br>35.0.0 35.0.1<br>34.0.0 |
| Android SDK Platform-Tools | 36.0.2 |
| Android SDK Platform-Tools | 37.0.0 |
| Android SDK Platforms | android-36.1 (rev 1)<br>android-36-ext19 (rev 1)<br>android-36-ext18 (rev 1)<br>android-36 (rev 2)<br>android-35-ext15 (rev 1)<br>android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3) |
| Android Support Repository | 47.0.0 |
| CMake | 3.18.1<br>3.22.1<br>3.31.5 |
@@ -291,7 +291,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
| brotli | 1.0.9-2build6 |
| bzip2 | 1.0.8-5build1 |
| coreutils | 8.32-4.1ubuntu1.2 |
| curl | 7.81.0-1ubuntu1.21 |
| curl | 7.81.0-1ubuntu1.22 |
| dbus | 1.12.20-2ubuntu4.1 |
| dnsutils | 1:9.18.39-0ubuntu0.22.04.2 |
| dpkg | 1.21.1ubuntu2.6 |
@@ -314,7 +314,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
| libc++-dev | 1:14.0-55\~exp2 |
| libc++abi-dev | 1:14.0-55\~exp2 |
| libc6-dev | 2.35-0ubuntu3.13 |
| libcurl4 | 7.81.0-1ubuntu1.21 |
| libcurl4 | 7.81.0-1ubuntu1.22 |
| libgbm-dev | 23.2.1-1ubuntu3.1\~22.04.3 |
| libgconf-2-4 | 3.2.6-7ubuntu2 |
| libgsl-dev | 2.7.1+dfsg-3 |
@@ -322,7 +322,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
| libmagic-dev | 1:5.41-3ubuntu0.1 |
| libmagickcore-dev | 8:6.9.11.60+dfsg-1.3ubuntu0.22.04.5 |
| libmagickwand-dev | 8:6.9.11.60+dfsg-1.3ubuntu0.22.04.5 |
| libnss3-tools | 2:3.98-0ubuntu0.22.04.2 |
| libnss3-tools | 2:3.98-0ubuntu0.22.04.3 |
| libsecret-1-dev | 0.20.5-2 |
| libsqlite3-dev | 3.37.2-2ubuntu0.5 |
| libssl-dev | 3.0.2-0ubuntu1.21 |
+18 -18
View File
@@ -5,7 +5,7 @@
# Ubuntu 24.04
- OS Version: 24.04.3 LTS
- Kernel Version: 6.14.0-1017-azure
- Image Version: 20260224.36.1
- Image Version: 20260302.42.1
- Systemd version: 255.4-1ubuntu8.12
## Installed Software
@@ -24,19 +24,19 @@
- Perl 5.38.2
- Python 3.12.3
- Ruby 3.2.3
- Swift 6.2.3
- Swift 6.2.4
### Package Management
- cpan 1.64
- Helm 3.20.0
- Homebrew 5.0.15
- Homebrew 5.0.16
- Miniconda 25.11.1
- Npm 10.8.2
- Pip 24.0
- Pip3 24.0
- Pipx 1.8.0
- RubyGems 3.4.20
- Vcpkg (build from commit b42b19a62b)
- Vcpkg (build from commit 96fb8cef55)
- Yarn 1.22.22
#### Environment variables
@@ -56,7 +56,7 @@ to accomplish this.
### Project Management
- Ant 1.10.14
- Gradle 9.3.1
- Lerna 9.0.4
- Lerna 9.0.5
- Maven 3.9.12
### Tools
@@ -64,23 +64,23 @@ to accomplish this.
- AzCopy 10.32.1 - available by `azcopy` and `azcopy10` aliases
- Bazel 9.0.0
- Bazelisk 1.28.1
- Bicep 0.40.2
- Bicep 0.41.2
- Buildah 1.33.7
- CMake 3.31.6
- CodeQL Action Bundle 2.24.2
- Docker Amazon ECR Credential Helper 0.11.0
- Docker Amazon ECR Credential Helper 0.12.0
- Docker Compose v2 2.38.2
- Docker-Buildx 0.31.1
- Docker Client 28.0.4
- Docker Server 28.0.4
- Fastlane 2.232.1
- Fastlane 2.232.2
- Git 2.53.0
- Git LFS 3.7.1
- Git-ftp 1.6.0
- Haveged 1.9.14
- jq 1.7
- Kind 0.31.0
- Kubectl 1.35.1
- Kubectl 1.35.2
- Kustomize 5.8.1
- MediaInfo 24.01
- Mercurial 6.7.2
@@ -92,7 +92,7 @@ to accomplish this.
- Packer 1.15.0
- Parcel 2.16.4
- Podman 4.9.3
- Pulumi 3.223.0
- Pulumi 3.224.0
- Skopeo 1.13.3
- Sphinx Open Source Search Server 2.2.11
- yamllint 1.38.0
@@ -101,13 +101,13 @@ to accomplish this.
- Ninja 1.13.2
### CLI Tools
- AWS CLI 2.33.28
- AWS CLI 2.34.0
- AWS CLI Session Manager Plugin 1.2.779.0
- AWS SAM CLI 1.154.0
- Azure CLI 2.83.0
- Azure CLI (azure-devops) 1.0.2
- GitHub CLI 2.87.3
- Google Cloud CLI 557.0.0
- Google Cloud CLI 558.0.0
### Java
| Version | Environment Variable |
@@ -145,10 +145,10 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
- Google Chrome 145.0.7632.116
- ChromeDriver 145.0.7632.117
- Chromium 145.0.7632.0
- Microsoft Edge 145.0.3800.70
- Microsoft Edge WebDriver 145.0.3800.70
- Microsoft Edge 145.0.3800.82
- Microsoft Edge WebDriver 145.0.3800.82
- Selenium server 4.41.0
- Mozilla Firefox 147.0.4
- Mozilla Firefox 148.0
- Geckodriver 0.36.0
#### Environment variables
@@ -167,7 +167,7 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
- sqlite3 3.45.1
#### PostgreSQL
- PostgreSQL 16.12
- PostgreSQL 16.13
```
User: postgres
PostgreSQL service is disabled by default.
@@ -194,7 +194,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
#### Node.js
- 20.20.0
- 22.22.0
- 24.13.1
- 24.14.0
#### Python
- 3.10.19
@@ -264,7 +264,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
| brotli | 1.1.0-2build2 |
| bzip2 | 1.0.8-5.1build0.1 |
| coreutils | 9.4-3ubuntu6.1 |
| curl | 8.5.0-2ubuntu10.6 |
| curl | 8.5.0-2ubuntu10.7 |
| dbus | 1.14.10-4ubuntu4.1 |
| dnsutils | 1:9.18.39-0ubuntu0.24.04.2 |
| dpkg | 1.22.6ubuntu6.5 |
@@ -65,9 +65,16 @@ systemctl is-enabled --quiet docker.service || systemctl enable docker.service
sleep 10
docker info
# Pull Dependabot docker image
if ! is_ubuntu22; then
# Pull Dependabot docker image
docker pull ghcr.io/dependabot/dependabot-updater-core:latest
# Pull AW docker images
docker pull ghcr.io/github/gh-aw-mcpg:latest
docker pull ghcr.io/github/gh-aw-firewall/agent:latest
docker pull ghcr.io/github/gh-aw-firewall/api-proxy:latest
docker pull ghcr.io/github/gh-aw-firewall/squid:latest
docker pull ghcr.io/github/github-mcp-server:latest
fi
# Download amazon-ecr-credential-helper
+1 -1
View File
@@ -73,7 +73,7 @@
"java": {
"default": "11",
"versions": [ "8", "11", "17", "21", "25"],
"maven": "3.9.12"
"maven": "3.9.13"
},
"android": {
"cmdline-tools": "commandlinetools-linux-9477386_latest.zip",
+1 -1
View File
@@ -71,7 +71,7 @@
"java": {
"default": "17",
"versions": [ "8", "11", "17", "21", "25"],
"maven": "3.9.12"
"maven": "3.9.13"
},
"android": {
"cmdline-tools": "commandlinetools-linux-11076708_latest.zip",
+11 -11
View File
@@ -5,7 +5,7 @@
***
# Windows Server 2022
- OS Version: 10.0.20348 Build 4773
- Image Version: 20260225.46.2
- Image Version: 20260301.50.1
## Windows features
- Windows Subsystem for Linux (WSLv1): Enabled
@@ -34,7 +34,7 @@
- pip 26.0.1 (python 3.12)
- Pipx 1.8.0
- RubyGems 3.5.22
- Vcpkg (build from commit 26283ac5e8)
- Vcpkg (build from commit 62159a45e1)
- Yarn 1.22.22
#### Environment variables
@@ -47,7 +47,7 @@
- Ant 1.10.15
- Gradle 9.3
- Maven 3.9.12
- sbt 1.12.3
- sbt 1.12.4
### Tools
- 7zip 26.00
@@ -55,7 +55,7 @@
- azcopy 10.32.1
- Bazel 9.0.0
- Bazelisk 1.28.1
- Bicep 0.40.2
- Bicep 0.41.2
- Cabal 3.16.1.0
- CMake 3.31.6
- CodeQL Action Bundle 2.24.2
@@ -69,7 +69,7 @@
- InnoSetup 6.7.1
- jq 1.8.1
- Kind 0.31.0
- Kubectl 1.35.1
- Kubectl 1.35.2
- Mercurial 6.3.1
- gcc 14.2.0
- gdb 16.2
@@ -78,7 +78,7 @@
- NSIS 3.10
- OpenSSL 3.6.1
- Packer 1.15.0
- Pulumi 3.222.0
- Pulumi 3.224.0
- R 4.5.2
- Service Fabric SDK 10.1.2493.9590
- Stack 3.9.3
@@ -93,7 +93,7 @@
### CLI Tools
- Alibaba Cloud CLI 3.2.10
- AWS CLI 2.33.27
- AWS CLI 2.34.0
- AWS SAM CLI 1.154.0
- AWS Session Manager CLI 1.2.779.0
- Azure CLI 2.83.0
@@ -117,8 +117,8 @@
### Browsers and Drivers
- Google Chrome 145.0.7632.117
- Chrome Driver 145.0.7632.117
- Microsoft Edge 145.0.3800.70
- Microsoft Edge Driver 145.0.3800.70
- Microsoft Edge 145.0.3800.82
- Microsoft Edge Driver 145.0.3800.82
- Mozilla Firefox 148.0
- Gecko Driver 0.36.0
- IE Driver 4.14.0.0
@@ -197,7 +197,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| Property | Value |
| -------------------- | ---------------------------------------------------------------------------------------------------------------------- |
| ServiceName | postgresql-x64-14 |
| Version | 14.21 |
| Version | 14.22 |
| ServiceStatus | Stopped |
| ServiceStartType | Disabled |
| EnvironmentVariables | PGBIN=C:\Program Files\PostgreSQL\14\bin <br> PGDATA=C:\PostgreSQL\14\data <br> PGROOT=C:\Program Files\PostgreSQL\14 |
@@ -493,7 +493,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
#### Powershell Modules
- Az: 14.6.0
- AWSPowershell: 5.0.162
- AWSPowershell: 5.0.165
- DockerMsftProvider: 1.0.0.8
- MarkdownPS: 1.10
- Microsoft.Graph: 2.35.1
+12 -12
View File
@@ -5,7 +5,7 @@
***
# Windows Server 2025
- OS Version: 10.0.26100 Build 32370
- Image Version: 20260225.38.2
- Image Version: 20260302.43.1
## Windows features
- Windows Subsystem for Linux (WSLv1): Enabled
@@ -35,7 +35,7 @@
- pip 26.0.1 (python 3.12)
- Pipx 1.8.0
- RubyGems 3.5.22
- Vcpkg (build from commit 26283ac5e8)
- Vcpkg (build from commit 39a6cc0e44)
- Yarn 1.22.22
#### Environment variables
@@ -48,7 +48,7 @@
- Ant 1.10.15
- Gradle 9.3
- Maven 3.9.12
- sbt 1.12.3
- sbt 1.12.5
### Tools
- 7zip 26.00
@@ -56,7 +56,7 @@
- azcopy 10.32.1
- Bazel 9.0.0
- Bazelisk 1.28.1
- Bicep 0.40.2
- Bicep 0.41.2
- Cabal 3.16.1.0
- CMake 3.31.6
- CodeQL Action Bundle 2.24.2
@@ -70,14 +70,14 @@
- InnoSetup 6.7.1
- jq 1.8.1
- Kind 0.31.0
- Kubectl 1.35.1
- Kubectl 1.35.2
- gcc 15.2.0
- gdb 17.1
- GNU Binutils 2.46
- Newman 6.2.2
- OpenSSL 3.6.1
- Packer 1.15.0
- Pulumi 3.222.0
- Pulumi 3.224.0
- R 4.5.2
- Service Fabric SDK 10.1.2493.9590
- Stack 3.9.3
@@ -90,7 +90,7 @@
- Ninja 1.13.2
### CLI Tools
- AWS CLI 2.33.27
- AWS CLI 2.34.0
- AWS SAM CLI 1.154.0
- AWS Session Manager CLI 1.2.779.0
- Azure CLI 2.83.0
@@ -110,8 +110,8 @@
### Browsers and Drivers
- Google Chrome 145.0.7632.117
- Chrome Driver 145.0.7632.117
- Microsoft Edge 145.0.3800.70
- Microsoft Edge Driver 145.0.3800.70
- Microsoft Edge 145.0.3800.82
- Microsoft Edge Driver 145.0.3800.82
- Mozilla Firefox 148.0
- Gecko Driver 0.36.0
- IE Driver 4.14.0.0
@@ -187,7 +187,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| Property | Value |
| -------------------- | ---------------------------------------------------------------------------------------------------------------------- |
| ServiceName | postgresql-x64-17 |
| Version | 17.8 |
| Version | 17.9 |
| ServiceStatus | Stopped |
| ServiceStartType | Disabled |
| EnvironmentVariables | PGBIN=C:\Program Files\PostgreSQL\17\bin <br> PGDATA=C:\PostgreSQL\17\data <br> PGROOT=C:\Program Files\PostgreSQL\17 |
@@ -473,7 +473,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
#### Powershell Modules
- Az: 14.6.0
- AWSPowershell: 5.0.162
- AWSPowershell: 5.0.165
- DockerMsftProvider: 1.0.0.8
- MarkdownPS: 1.10
- Microsoft.Graph: 2.35.1
@@ -491,7 +491,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| Android Emulator | 36.4.9 |
| Android SDK Build-tools | 36.0.0 36.1.0<br>35.0.0 35.0.1<br>34.0.0 |
| Android SDK Platforms | android-36.1 (rev 1)<br>android-36-ext19 (rev 1)<br>android-36-ext18 (rev 1)<br>android-36 (rev 2)<br>android-35-ext15 (rev 1)<br>android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3) |
| Android SDK Platform-Tools | 36.0.2 |
| Android SDK Platform-Tools | 37.0.0 |
| Android Support Repository | 47.0.0 |
| CMake | 3.30.5<br>3.31.5<br>4.1.2 |
| Google Play services | 49 |
+11 -11
View File
@@ -5,7 +5,7 @@
***
# Windows Server 2025
- OS Version: 10.0.26100 Build 32370
- Image Version: 20260225.23.2
- Image Version: 20260301.27.1
## Windows features
- Windows Subsystem for Linux (WSLv1): Enabled
@@ -35,7 +35,7 @@
- pip 26.0.1 (python 3.12)
- Pipx 1.8.0
- RubyGems 3.5.22
- Vcpkg (build from commit 26283ac5e8)
- Vcpkg (build from commit 62159a45e1)
- Yarn 1.22.22
#### Environment variables
@@ -48,7 +48,7 @@
- Ant 1.10.15
- Gradle 9.3
- Maven 3.9.12
- sbt 1.12.3
- sbt 1.12.4
### Tools
- 7zip 26.00
@@ -56,7 +56,7 @@
- azcopy 10.32.1
- Bazel 9.0.0
- Bazelisk 1.28.1
- Bicep 0.40.2
- Bicep 0.41.2
- Cabal 3.16.1.0
- CMake 4.2.3
- CodeQL Action Bundle 2.24.2
@@ -70,14 +70,14 @@
- InnoSetup 6.7.1
- jq 1.8.1
- Kind 0.31.0
- Kubectl 1.35.1
- Kubectl 1.35.2
- gcc 15.2.0
- gdb 17.1
- GNU Binutils 2.46
- Newman 6.2.2
- OpenSSL 3.6.1
- Packer 1.15.0
- Pulumi 3.222.0
- Pulumi 3.224.0
- R 4.5.2
- Service Fabric SDK 10.1.2493.9590
- Stack 3.9.3
@@ -90,7 +90,7 @@
- Ninja 1.13.2
### CLI Tools
- AWS CLI 2.33.27
- AWS CLI 2.34.0
- AWS SAM CLI 1.154.0
- AWS Session Manager CLI 1.2.779.0
- Azure CLI 2.83.0
@@ -110,8 +110,8 @@
### Browsers and Drivers
- Google Chrome 145.0.7632.117
- Chrome Driver 145.0.7632.117
- Microsoft Edge 145.0.3800.70
- Microsoft Edge Driver 145.0.3800.70
- Microsoft Edge 145.0.3800.82
- Microsoft Edge Driver 145.0.3800.82
- Mozilla Firefox 148.0
- Gecko Driver 0.36.0
- IE Driver 4.14.0.0
@@ -187,7 +187,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| Property | Value |
| -------------------- | ---------------------------------------------------------------------------------------------------------------------- |
| ServiceName | postgresql-x64-17 |
| Version | 17.8 |
| Version | 17.9 |
| ServiceStatus | Stopped |
| ServiceStartType | Disabled |
| EnvironmentVariables | PGBIN=C:\Program Files\PostgreSQL\17\bin <br> PGDATA=C:\PostgreSQL\17\data <br> PGROOT=C:\Program Files\PostgreSQL\17 |
@@ -455,7 +455,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
#### Powershell Modules
- Az: 14.6.0
- AWSPowershell: 5.0.162
- AWSPowershell: 5.0.165
- DockerMsftProvider: 1.0.0.8
- MarkdownPS: 1.10
- Microsoft.Graph: 2.35.1