Compare commits

..
83 changed files with 1811 additions and 2584 deletions
-2
View File
@@ -38,14 +38,12 @@ body:
options:
- label: Ubuntu 22.04
- label: Ubuntu 24.04
- label: Ubuntu Slim
- label: macOS 13
- label: macOS 13 Arm64
- label: macOS 14
- label: macOS 14 Arm64
- label: macOS 15
- label: macOS 15 Arm64
- label: macOS 26 Arm64
- label: Windows Server 2019
- label: Windows Server 2022
- label: Windows Server 2025
-2
View File
@@ -21,14 +21,12 @@ body:
options:
- label: Ubuntu 22.04
- label: Ubuntu 24.04
- label: Ubuntu Slim
- label: macOS 13
- label: macOS 13 Arm64
- label: macOS 14
- label: macOS 14 Arm64
- label: macOS 15
- label: macOS 15 Arm64
- label: macOS 26 Arm64
- label: Windows Server 2019
- label: Windows Server 2022
- label: Windows Server 2025
-2
View File
@@ -59,14 +59,12 @@ body:
options:
- label: Ubuntu 22.04
- label: Ubuntu 24.04
- label: Ubuntu Slim
- label: macOS 13
- label: macOS 13 Arm64
- label: macOS 14
- label: macOS 14 Arm64
- label: macOS 15
- label: macOS 15 Arm64
- label: macOS 26 Arm64
- label: Windows Server 2019
- label: Windows Server 2022
- label: Windows Server 2025
+1 -1
View File
@@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v4
- name: Validate JSON Schema
shell: pwsh
+1 -1
View File
@@ -40,7 +40,7 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
+1 -1
View File
@@ -11,7 +11,7 @@ jobs:
steps:
- name: Create release for ${{ github.event.client_payload.ReleaseBranchName }}
uses: ncipollo/release-action@b7eabc95ff50cbeeedec83973935c8f306dfcd0b #v1.20.0
uses: ncipollo/release-action@440c8c1cb0ed28b9f43e4d1d670870f059653174 #v1.16.0
with:
tag: ${{ github.event.client_payload.ReleaseBranchName }}
name: ${{ github.event.client_payload.ReleaseTitle }}
+3 -3
View File
@@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v4
with:
fetch-depth: 0
@@ -22,7 +22,7 @@ jobs:
- name: Create pull request for ${{ github.event.client_payload.ReleaseBranchName }}
id: create-pr
uses: actions/github-script@v8
uses: actions/github-script@v7
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
@@ -51,7 +51,7 @@ jobs:
}
- name: Request reviewers
uses: actions/github-script@v8
uses: actions/github-script@v7
with:
github-token: ${{secrets.PRAPPROVAL_SECRET}}
script: |
+29 -44
View File
@@ -1,112 +1,97 @@
name: Create SBOM for the release
run-name: Collecting SBOM for ${{ github.event.client_payload.agentSpec || 'unknown image' }} - ${{ github.event.client_payload.imageVersion || 'unknown version' }}
# Inherited variables:
# github.event.client_payload.agentSpec - Current YAML Label
# github.event.client_payload.ReleaseID - Current release ID
# github.event.client_payload.imageVersion - AzDO image version "major.minor"
# github.event.client_payload.ReleaseBranchName - Necessary to identify workflow run
#
# Current SYFT tool issues:
# macOS (major): prompt privilegies that blocking process indefinetely (https://github.com/anchore/syft/issues/1367)
run-name: Collecting SBOM for ${{ github.event.client_payload.ReleaseBranchName || 'unknown release' }}
on:
repository_dispatch:
types: [generate-sbom]
defaults:
run:
shell: pwsh
jobs:
#Checking current release for SBOM
sbom-check:
outputs:
check_status: ${{ steps.check.outputs.status }}
runs-on: ubuntu-latest
env:
RELEASE_ID: ${{ github.event.client_payload.ReleaseID }}
steps:
- name: Check SBOM asset for release ${{ env.RELEASE_ID }}
- name: Check release for ${{ github.event.client_payload.ReleaseBranchName }}
id: check
shell: pwsh
run: |
$apiUrl = "https://api.github.com/repos/actions/runner-images/releases/$env:RELEASE_ID"
$apiUrl = "https://api.github.com/repos/actions/runner-images/releases/${{ github.event.client_payload.ReleaseID }}"
$response = Invoke-RestMethod -Uri $apiUrl -Method Get -SkipHttpErrorCheck
if ($response.message -ilike "Not Found") {
echo "status=release_not_found" >> $env:GITHUB_OUTPUT
Write-Error "Release $env:RELEASE_ID wasn't found"
Write-Error "Release ${{ github.event.client_payload.ReleaseID }} wasn't found"
exit 1
}
foreach ($asset in $response.assets) {
if ($asset.name -like '*sbom*') {
echo "status=sbom_exists" >> $env:GITHUB_OUTPUT
return "Release $env:RELEASE_ID already contains a SBOM"
return "Release ${{ github.event.client_payload.ReleaseID }} already contains a SBOM"
}
}
Write-Host "Release has been found, SBOM is not attached, starting generation."
echo "status=okay" >> $env:GITHUB_OUTPUT
#Generating SBOM
building-sbom:
needs: sbom-check
if: ${{ needs.sbom-check.outputs.check_status == 'okay' }}
runs-on: ${{ github.event.client_payload.agentSpec }}
env:
AGENT_SPEC: ${{ github.event.client_payload.agentSpec }}
RELEASE_ID: ${{ github.event.client_payload.ReleaseID }}
IMAGE_VERSION: ${{ github.event.client_payload.imageVersion }}
steps:
- name: Available image version check
- name: Available image version check for ${{ github.event.client_payload.ReleaseBranchName }}
run: |
$expectedVersion = $env:IMAGE_VERSION
$runnerVersion = $env:ImageVersion
# Split versions by dot
$expectedParts = $expectedVersion.Split('.')
$runnerParts = $runnerVersion.Split('.')
# Determine what parts to compare
$minLength = [Math]::Min($expectedParts.Length, $runnerParts.Length)
$expectedComparable = $expectedParts[0..($minLength-1)] -join '.'
$runnerComparable = $runnerParts[0..($minLength-1)] -join '.'
# Perform the comparison
if ($expectedComparable -ne $runnerComparable) {
throw "Version mismatch: Expected version '$expectedVersion' doesn't match runner version '$runnerVersion'"
$imageVersionComponents = $env:ImageVersion.Split('.')
$imageMajorVersion = $imageVersionComponents[0]
$imageMinorVersion = $imageVersionComponents[1]
if ("$imageMajorVersion.$imageMinorVersion" -ne '${{ github.event.client_payload.imageVersion }}') {
throw "Current runner $imageMajorVersion.$imageMinorVersion image version doesn't match ${{ github.event.client_payload.imageVersion }}."
}
- name: Install SYFT tool on Windows
if: ${{ runner.os == 'Windows' }}
run: curl -sSfL https://raw.githubusercontent.com/anchore/syft/main/install.sh | sh -s -- -b C:/syft
- name: Install SYFT tool on Ubuntu
if: ${{ runner.os == 'Linux' }}
run: curl -sSfL https://raw.githubusercontent.com/anchore/syft/main/install.sh | sh -s -- -b /usr/local/bin
- name: Install SYFT v1.24.0 on macOS
if: ${{ runner.os == 'macOS' }}
run: curl -sSfL https://raw.githubusercontent.com/anchore/syft/main/install.sh | sh -s -- -b /usr/local/bin v1.24.0
#Running section.
- name: Run SYFT on Windows
if: ${{ runner.os == 'Windows' }}
run: C:/syft/syft dir:C:/ -vv -o spdx-json=sbom.json
- name: Run SYFT on Ubuntu
if: ${{ runner.os == 'Linux' }}
run: syft dir:/ -vv -o spdx-json=sbom.json
- name: Run SYFT on macOS
if: ${{ runner.os == 'macOS' }}
# Skip protected folders to avoid prompt privileges that block process indefinitely (https://github.com/anchore/syft/issues/1367)
run: sudo syft dir:/ -vv -o spdx-json=sbom.json --exclude ./Users --exclude ./System/Volumes --exclude ./private
shell: bash
#Preparing artifact (raw SBOM.json is too big)
- name: Compress SBOM file
run: Compress-Archive sbom.json sbom.json.zip
#Upload artifact action
- uses: actions/upload-artifact@v4
with:
name: sbom-${{ env.AGENT_SPEC }}-${{ env.IMAGE_VERSION }}
name: sbom-${{ github.event.client_payload.agentSpec }}-${{ github.event.client_payload.imageVersion }}
path: sbom.json.zip
if-no-files-found: warn
#Upload release asset action
#Might be changed to softprops/action-gh-release after additional check
- name: Upload release asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: "https://uploads.github.com/repos/actions/runner-images/releases/${{ env.RELEASE_ID }}/assets{?name,label}"
upload_url: "https://uploads.github.com/repos/actions/runner-images/releases/${{ github.event.client_payload.ReleaseID }}/assets{?name,label}"
asset_path: ./sbom.json.zip
asset_name: sbom.${{ env.AGENT_SPEC }}.json.zip
asset_name: sbom.${{ github.event.client_payload.agentSpec }}.json.zip
asset_content_type: application/zip
+1 -1
View File
@@ -17,7 +17,7 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v5
uses: actions/checkout@v4
with:
fetch-depth: 0
+3 -3
View File
@@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v4
with:
fetch-depth: 0
@@ -24,7 +24,7 @@ jobs:
sleep 30
- name: Approve pull request by GitHub-Actions bot
uses: actions/github-script@v8
uses: actions/github-script@v7
with:
github-token: ${{secrets.PRAPPROVAL_SECRET}}
script: |
@@ -36,7 +36,7 @@ jobs:
});
- name: Merge pull request for ${{ github.event.client_payload.ReleaseBranchName }}
uses: actions/github-script@v8
uses: actions/github-script@v7
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
+1 -1
View File
@@ -15,7 +15,7 @@ jobs:
steps:
- name: Checkout Repository
uses: actions/checkout@v5
uses: actions/checkout@v4
- name: Run Software Report module tests
shell: pwsh
@@ -23,7 +23,7 @@ jobs:
CI_REPO: ${{ vars.CI_REPO }}
steps:
- name: Checkout Code
uses: actions/checkout@v5
uses: actions/checkout@v4
- name: Trigger Build workflow
run: |
@@ -78,7 +78,7 @@ jobs:
needs: trigger-workflow
steps:
- name: Checkout Code
uses: actions/checkout@v5
uses: actions/checkout@v4
- name: Wait for workflow completion
env:
@@ -106,7 +106,7 @@ jobs:
if: cancelled()
steps:
- name: Checkout Code
uses: actions/checkout@v5
uses: actions/checkout@v4
- name: Cancel workflow
env:
+1 -1
View File
@@ -11,7 +11,7 @@ jobs:
steps:
- name: Update release for ${{ github.event.client_payload.ReleaseBranchName }}
uses: actions/github-script@v8
uses: actions/github-script@v7
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
+1 -1
View File
@@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v4
- name: Validate JSON Schema
shell: pwsh
+5 -7
View File
@@ -22,15 +22,14 @@ To build a VM machine from this repo's source, see the [instructions](docs/creat
| --------------------|---------------------|--------------------|
| Ubuntu 24.04 | `ubuntu-latest` or `ubuntu-24.04` | [ubuntu-24.04] |
| Ubuntu 22.04 | `ubuntu-22.04` | [ubuntu-22.04] |
| macOS 26 Arm64 `beta` | `macos-26` or `macos-26-xlarge` | [macOS-26-arm64] |
| macOS 15 | `macos-latest-large`, `macos-15-large`, or `macos-15-intel` | [macOS-15] |
| macOS 15 | `macos-latest-large` or `macos-15-large`| [macOS-15] |
| macOS 15 Arm64 | `macos-latest`, `macos-15`, or `macos-15-xlarge` | [macOS-15-arm64] |
| macOS 14 | `macos-14-large`| [macOS-14] |
| macOS 14 Arm64 | `macos-14` or `macos-14-xlarge`| [macOS-14-arm64] |
| macOS 13 ![Deprecated](https://img.shields.io/badge/-Deprecated-red) | `macos-13` or `macos-13-large` | [macOS-13] |
| macOS 13 Arm64 ![Deprecated](https://img.shields.io/badge/-Deprecated-red) | `macos-13-xlarge` | [macOS-13-arm64] |
| Windows Server 2025 | `windows-latest` or `windows-2025` | [windows-2025] |
| Windows Server 2022 | `windows-2022` | [windows-2022] |
| macOS 13 | `macos-13` or `macos-13-large` | [macOS-13] |
| macOS 13 Arm64 | `macos-13-xlarge` | [macOS-13-arm64] |
| Windows Server 2025 | `windows-2025` | [windows-2025] |
| Windows Server 2022 | `windows-latest` or `windows-2022` | [windows-2022] |
| Windows Server 2019 ![Deprecated](https://img.shields.io/badge/-Deprecated-red) | `windows-2019` | [windows-2019] |
### Label scheme
@@ -49,7 +48,6 @@ To build a VM machine from this repo's source, see the [instructions](docs/creat
[macOS-14-arm64]: https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md
[macOS-15]: https://github.com/actions/runner-images/blob/main/images/macos/macos-15-Readme.md
[macOS-15-arm64]: https://github.com/actions/runner-images/blob/main/images/macos/macos-15-arm64-Readme.md
[macOS-26-arm64]: https://github.com/actions/runner-images/blob/main/images/macos/macos-26-arm64-Readme.md
[self-hosted runners]: https://help.github.com/en/actions/hosting-your-own-runners
## Announcements
+23 -24
View File
@@ -1,13 +1,13 @@
| Announcements |
|-|
| [[macOS] Cmake will be updated to version 4.* on September 8th](https://github.com/actions/runner-images/issues/12934) |
| [[macOS] Deprecation of 4 tools on November 3rd.](https://github.com/actions/runner-images/issues/12873) |
| [[macOS] Default Xcode on macOS 15 Sequoia will be set to Xcode 16.4 on August, 25](https://github.com/actions/runner-images/issues/12751) |
| [[macOS] macos-latest YAML-label will use macos-15 in August 2025](https://github.com/actions/runner-images/issues/12520) |
***
# macOS 13
- OS Version: macOS 13.7.6 (22H625)
- Kernel Version: Darwin 22.6.0
- Image Version: 20250908.1476
- Image Version: 20250825.1442
## Installed Software
@@ -26,9 +26,9 @@
- GNU Fortran 15 (Homebrew GCC 15.1.0) - available by `gfortran-15` alias
- Kotlin 2.2.10-release-430
- Mono 6.12.0.188
- Node.js 20.19.5
- Node.js 20.19.4
- Perl 5.40.2
- PHP 8.4.12
- PHP 8.4.11
- Python3 3.13.7
- Ruby 3.3.9
@@ -37,13 +37,13 @@
- Carthage 0.40.0
- CocoaPods 1.16.2
- Composer 2.8.11
- Homebrew 4.6.9
- Homebrew 4.6.6
- NPM 10.8.2
- NuGet 6.3.1.1
- Pip3 25.2 (python 3.13)
- Pipx 1.7.1
- RubyGems 3.7.1
- Vcpkg 2025 (build from commit 4a7ce81d91)
- Vcpkg 2025 (build from commit 6ecbbbdf31)
- Yarn 1.22.22
### Project Management
@@ -55,11 +55,11 @@
- 7-Zip 17.05
- aria2 1.37.0
- azcopy 10.30.0
- bazel 8.4.0
- bazel 8.3.1
- bazelisk 1.27.0
- bsdtar 3.5.3 - available by 'tar' alias
- Curl 8.15.0
- Git 2.50.1
- Git 2.51.0
- Git LFS 3.7.0
- GitHub CLI 2.78.0
- GNU Tar 1.35 - available by 'gtar' alias
@@ -75,14 +75,14 @@
- Ninja 1.13.1
### Tools
- AWS CLI 2.28.25
- AWS CLI 2.28.16
- AWS SAM CLI 1.143.0
- AWS Session Manager CLI 1.2.707.0
- Azure CLI 2.77.0
- Azure CLI 2.76.0
- Azure CLI (azure-devops) 1.0.2
- Bicep CLI 0.37.4
- Cmake 4.1.1
- CodeQL Action Bundle 2.23.0
- Cmake 3.31.6
- CodeQL Action Bundle 2.22.4
- Fastlane 2.228.0
- SwiftFormat 0.57.2
- Xcbeautify 2.30.1
@@ -90,17 +90,17 @@
- Xcodes 1.6.2
### Linters
- SwiftLint 0.61.0
- SwiftLint 0.59.1
### Browsers
- Safari 18.5 (18621.2.5.18.1)
- SafariDriver 18.5 (18621.2.5.18.1)
- Google Chrome 140.0.7339.81
- Google Chrome for Testing 140.0.7339.80
- ChromeDriver 140.0.7339.80
- Microsoft Edge 140.0.3485.54
- Microsoft Edge WebDriver 140.0.3485.54
- Mozilla Firefox 142.0.1
- Google Chrome 139.0.7258.139
- Google Chrome for Testing 139.0.7258.138
- ChromeDriver 139.0.7258.138
- Microsoft Edge 139.0.3405.111
- Microsoft Edge WebDriver 139.0.3405.111
- Mozilla Firefox 142.0
- geckodriver 0.36.0
- Selenium server 4.35.0
@@ -144,14 +144,13 @@
#### Node.js
- 18.20.8
- 20.19.5
- 22.19.0
- 20.19.4
- 22.18.0
#### Go
- 1.22.12
- 1.23.12
- 1.24.7
- 1.25.1
- 1.24.6
### Rust Tools
- Cargo 1.89.0
@@ -273,7 +272,7 @@
#### Environment variables
| Name | Value |
| ----------------- | ----------------------------------------------------------------------------------------- |
| PARALLELS_DMG_URL | https://download.parallels.com/desktop/v26/26.0.1-57243/ParallelsDesktop-26.0.1-57243.dmg |
| PARALLELS_DMG_URL | https://download.parallels.com/desktop/v20/20.4.1-55996/ParallelsDesktop-20.4.1-55996.dmg |
##### Notes
```
+20 -21
View File
@@ -1,13 +1,13 @@
| Announcements |
|-|
| [[macOS] Cmake will be updated to version 4.* on September 8th](https://github.com/actions/runner-images/issues/12934) |
| [[macOS] Deprecation of 4 tools on November 3rd.](https://github.com/actions/runner-images/issues/12873) |
| [[macOS] Default Xcode on macOS 15 Sequoia will be set to Xcode 16.4 on August, 25](https://github.com/actions/runner-images/issues/12751) |
| [[macOS] macos-latest YAML-label will use macos-15 in August 2025](https://github.com/actions/runner-images/issues/12520) |
***
# macOS 13
- OS Version: macOS 13.7.6 (22H625)
- Kernel Version: Darwin 22.6.0
- Image Version: 20250908.1545
- Image Version: 20250825.1524
## Installed Software
@@ -26,7 +26,7 @@
- GNU Fortran 15 (Homebrew GCC 15.1.0) - available by `gfortran-15` alias
- Kotlin 2.2.10-release-430
- Mono 6.12.0.188
- Node.js 20.19.5
- Node.js 20.19.4
- Perl 5.40.2
- Python3 3.13.7
- Ruby 3.3.9
@@ -35,7 +35,7 @@
- Bundler 2.7.1
- Carthage 0.40.0
- CocoaPods 1.16.2
- Homebrew 4.6.9
- Homebrew 4.6.6
- NPM 10.8.2
- NuGet 6.3.1.1
- Pip3 25.2 (python 3.13)
@@ -52,11 +52,11 @@
- 7-Zip 17.05
- aria2 1.37.0
- azcopy 10.30.0
- bazel 8.4.0
- bazel 8.3.1
- bazelisk 1.27.0
- bsdtar 3.5.3 - available by 'tar' alias
- Curl 8.7.1
- Git 2.50.1
- Git 2.51.0
- Git LFS 3.7.0
- GitHub CLI 2.78.0
- GNU Tar 1.35 - available by 'gtar' alias
@@ -72,14 +72,14 @@
- Ninja 1.13.1
### Tools
- AWS CLI 2.28.25
- AWS CLI 2.28.16
- AWS SAM CLI 1.143.0
- AWS Session Manager CLI 1.2.707.0
- Azure CLI 2.77.0
- Azure CLI 2.76.0
- Azure CLI (azure-devops) 1.0.2
- Bicep CLI 0.37.4
- Cmake 4.1.1
- CodeQL Action Bundle 2.23.0
- Cmake 3.31.6
- CodeQL Action Bundle 2.22.4
- Fastlane 2.228.0
- SwiftFormat 0.57.2
- Xcbeautify 2.30.1
@@ -91,12 +91,12 @@
### Browsers
- Safari 18.5 (18621.2.5.18.1)
- SafariDriver 18.5 (18621.2.5.18.1)
- Google Chrome 140.0.7339.81
- Google Chrome for Testing 140.0.7339.80
- ChromeDriver 140.0.7339.80
- Microsoft Edge 140.0.3485.54
- Microsoft Edge WebDriver 140.0.3485.54
- Mozilla Firefox 142.0.1
- Google Chrome 139.0.7258.139
- Google Chrome for Testing 139.0.7258.138
- ChromeDriver 139.0.7258.138
- Microsoft Edge 139.0.3405.111
- Microsoft Edge WebDriver 139.0.3405.111
- Mozilla Firefox 142.0
- geckodriver 0.36.0
- Selenium server 4.35.0
@@ -129,14 +129,13 @@
#### Node.js
- 18.20.8
- 20.19.5
- 22.19.0
- 20.19.4
- 22.18.0
#### Go
- 1.22.12
- 1.23.12
- 1.24.7
- 1.25.1
- 1.24.6
### Rust Tools
- Cargo 1.89.0
@@ -203,8 +202,8 @@
| visionOS 1.0 | xros1.0 | 15.2 |
| Simulator - visionOS 1.0 | xrsimulator1.0 | 15.2 |
| Asset Runtime SDK for macOS hosts targeting watchOS 9.4 | assetruntime.host.macosx.target.watchos9.4 | 14.3.1 |
| Asset Runtime SDK for macOS hosts targeting tvOS 16.4 | assetruntime.host.macosx.target.appletvos16.4 | 14.3.1 |
| Asset Runtime SDK for macOS hosts targeting iOS 16.4 | assetruntime.host.macosx.target.iphoneos16.4 | 14.3.1 |
| Asset Runtime SDK for macOS hosts targeting tvOS 16.4 | assetruntime.host.macosx.target.appletvos16.4 | 14.3.1 |
| DriverKit 22.1 | driverkit22.1 | 14.1 |
| DriverKit 22.2 | driverkit22.2 | 14.2 |
| DriverKit 22.4 | driverkit22.4 | 14.3.1 |
+102 -103
View File
@@ -1,107 +1,108 @@
| Announcements |
|-|
| [[macOS] The macOS 13 Ventura based runner images will begin deprecation on September 22nd and will be fully unsupported by December 4th for GitHub and ADO](https://github.com/actions/runner-images/issues/13046) |
| [[macOS] The additional macOS 15 Sonoma Intel-based image will be available in GitHub Actions](https://github.com/actions/runner-images/issues/13045) |
| [macOS 26 (Tahoe) is now available as a public beta in GitHub Actions](https://github.com/actions/runner-images/issues/13008) |
| [[macOS] Deprecation of 4 tools on November 3rd.](https://github.com/actions/runner-images/issues/12873) |
| [[macOS] Default Xcode on macOS 15 Sequoia will be set to Xcode 16.4 on August, 25](https://github.com/actions/runner-images/issues/12751) |
| [[macOS] macos-latest YAML-label will use macos-15 in August 2025](https://github.com/actions/runner-images/issues/12520) |
***
# macOS 14
- OS Version: macOS 14.8.1 (23J30)
- OS Version: macOS 14.7.6 (23H626)
- Kernel Version: Darwin 23.6.0
- Image Version: 20251104.0148
- Image Version: 20250825.1555
## Installed Software
### Language and Runtime
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.415, 9.0.102, 9.0.203, 9.0.306
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.413, 9.0.102, 9.0.203, 9.0.304
- Bash 3.2.57(1)-release
- Clang/LLVM 15.0.0
- Clang/LLVM (Homebrew) 15.0.7 - available on `$(brew --prefix llvm@15)/bin/clang`
- GCC 12 (Homebrew GCC 12.4.0) - available by `gcc-12` alias
- GCC 13 (Homebrew GCC 13.4.0) - available by `gcc-13` alias
- GCC 14 (Homebrew GCC 14.3.0) - available by `gcc-14` alias
- GCC 15 (Homebrew GCC 15.2.0) - available by `gcc-15` alias
- GCC 15 (Homebrew GCC 15.1.0) - available by `gcc-15` alias
- GNU Fortran 12 (Homebrew GCC 12.4.0) - available by `gfortran-12` alias
- GNU Fortran 13 (Homebrew GCC 13.4.0) - available by `gfortran-13` alias
- GNU Fortran 14 (Homebrew GCC 14.3.0) - available by `gfortran-14` alias
- GNU Fortran 15 (Homebrew GCC 15.2.0) - available by `gfortran-15` alias
- Kotlin 2.2.21-release-469
- GNU Fortran 15 (Homebrew GCC 15.1.0) - available by `gfortran-15` alias
- Kotlin 2.2.10-release-430
- Mono 6.12.0.188
- Node.js 20.19.5
- Node.js 20.19.4
- Perl 5.40.2
- PHP 8.4.14
- Python3 3.14.0
- Ruby 3.3.10
- PHP 8.4.11
- Python3 3.13.7
- Ruby 3.3.9
### Package Management
- Bundler 2.7.2
- Bundler 2.7.1
- Carthage 0.40.0
- CocoaPods 1.16.2
- Composer 2.8.12
- Homebrew 4.6.20
- Composer 2.8.11
- Homebrew 4.6.7
- NPM 10.8.2
- NuGet 6.3.1.1
- Pip3 25.3 (python 3.14)
- Pipx 1.8.0
- RubyGems 3.7.2
- Vcpkg 2025 (build from commit b27f6bfad3)
- Pip3 25.2 (python 3.13)
- Pipx 1.7.1
- RubyGems 3.7.1
- Vcpkg 2025 (build from commit 6ecbbbdf31)
- Yarn 1.22.22
### Project Management
- Apache Ant 1.10.15
- Apache Maven 3.9.11
- Gradle 9.2.0
- Gradle 9.0.0
### Utilities
- 7-Zip 17.05
- aria2 1.37.0
- azcopy 10.31.0
- bazel 8.4.2
- azcopy 10.30.0
- bazel 8.3.1
- bazelisk 1.27.0
- bsdtar 3.5.3 - available by 'tar' alias
- Curl 8.16.0
- Git 2.50.1
- Git LFS 3.7.1
- GitHub CLI 2.82.1
- Curl 8.15.0
- Git 2.51.0
- Git LFS 3.7.0
- GitHub CLI 2.78.0
- GNU Tar 1.35 - available by 'gtar' alias
- GNU Wget 1.25.0
- gpg (GnuPG) 2.4.8
- jq 1.8.1
- OpenSSL 1.1.1w 11 Sep 2023
- Packer 1.14.2
- Packer 1.14.0
- pkgconf 2.5.1
- Unxip 3.2
- yq 4.48.1
- yq 4.47.1
- zstd 1.5.7
- Ninja 1.13.1
### Tools
- AWS CLI 2.31.28
- AWS SAM CLI 1.145.2
- AWS CLI 2.28.16
- AWS SAM CLI 1.143.0
- AWS Session Manager CLI 1.2.707.0
- Azure CLI 2.78.0
- Azure CLI 2.76.0
- Azure CLI (azure-devops) 1.0.2
- Bicep CLI 0.38.33
- Cmake 4.1.2
- CodeQL Action Bundle 2.23.3
- Bicep CLI 0.37.4
- Cmake 3.31.6
- CodeQL Action Bundle 2.22.4
- Fastlane 2.228.0
- SwiftFormat 0.58.5
- Xcbeautify 3.1.0
- SwiftFormat 0.57.2
- Xcbeautify 2.30.1
- Xcode Command Line Tools 16.2.0.0.1.1733547573
- Xcodes 1.6.2
### Linters
- SwiftLint 0.62.2
- SwiftLint 0.59.1
### Browsers
- Safari 26.0.1 (19622.1.22.118.4)
- SafariDriver 26.0.1 (19622.1.22.118.4)
- Google Chrome 142.0.7444.60
- Google Chrome for Testing 142.0.7444.59
- ChromeDriver 142.0.7444.59
- Microsoft Edge 142.0.3595.53
- Microsoft Edge WebDriver 142.0.3595.53
- Mozilla Firefox 144.0.2
- Safari 18.5 (19621.2.5.18.1)
- SafariDriver 18.5 (19621.2.5.18.1)
- Google Chrome 139.0.7258.139
- Google Chrome for Testing 139.0.7258.138
- ChromeDriver 139.0.7258.138
- Microsoft Edge 139.0.3405.111
- Microsoft Edge WebDriver 139.0.3405.111
- Mozilla Firefox 142.0
- geckodriver 0.36.0
- Selenium server 4.38.0
- Selenium server 4.35.0
#### Environment variables
| Name | Value |
@@ -111,52 +112,50 @@
| GECKOWEBDRIVER | /usr/local/opt/geckodriver/bin |
### Java
| Version | Environment Variable |
| --------------------- | -------------------- |
| 8.0.462+8 | JAVA_HOME_8_X64 |
| 11.0.28+6 | JAVA_HOME_11_X64 |
| 17.0.16+8 | JAVA_HOME_17_X64 |
| 21.0.9+10.0 (default) | JAVA_HOME_21_X64 |
| 25.0.1+8.0 | JAVA_HOME_25_X64 |
| Version | Environment Variable |
| -------------------- | -------------------- |
| 8.0.462+8 | JAVA_HOME_8_X64 |
| 11.0.28+6 | JAVA_HOME_11_X64 |
| 17.0.16+8 | JAVA_HOME_17_X64 |
| 21.0.8+9.0 (default) | JAVA_HOME_21_X64 |
### Cached Tools
#### Ruby
- 3.1.7
- 3.2.9
- 3.3.10
- 3.4.7
- 3.3.9
- 3.4.5
#### Python
- 3.9.25
- 3.10.19
- 3.9.23
- 3.10.18
- 3.11.9
- 3.12.10
- 3.13.9
- 3.14.0
- 3.13.7
#### Node.js
- 20.19.5
- 22.21.1
- 24.11.0
- 18.20.8
- 20.19.4
- 22.18.0
#### Go
- 1.22.12
- 1.23.12
- 1.24.9
- 1.25.3
- 1.24.6
### Rust Tools
- Cargo 1.91.0
- Rust 1.91.0
- Rustdoc 1.91.0
- Cargo 1.89.0
- Rust 1.89.0
- Rustdoc 1.89.0
- Rustup 1.28.2
#### Packages
- Clippy 0.1.91
- Clippy 0.1.89
- Rustfmt 1.8.0-stable
### PowerShell Tools
- PowerShell 7.4.13
- PowerShell 7.4.11
#### PowerShell Modules
- Az: 12.5.0
@@ -237,40 +236,40 @@
| 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 (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 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) |
| OS | Simulators |
| ------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| iOS 17.0 | 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 | 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 | 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 11-inch (M4)<br>iPad Pro 13-inch (M4) |
| iOS 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 | 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 | 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 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 17.2 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 17.4 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 17.5 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 18.1 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 18.2 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| watchOS 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 | 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 | 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 | 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 | 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 | 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 |
| -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Android Command Line Tools | 11.0 |
| Android Emulator | 36.2.12 |
| Android SDK Build-tools | 36.0.0 36.1.0<br>35.0.0 35.0.1<br>34.0.0<br>33.0.2 33.0.3 |
| 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)<br>android-33-ext5 (rev 1)<br>android-33-ext4 (rev 1)<br>android-33 (rev 3) |
| Android SDK Platform-Tools | 36.0.0 |
| Android Support Repository | 47.0.0 |
| CMake | 3.31.5 |
| Google Play services | 49 |
| Google Repository | 58 |
| NDK | 26.3.11579264 (default)<br>27.3.13750724<br>28.2.13676358 |
| Package Name | Version |
| -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Android Command Line Tools | 11.0 |
| Android Emulator | 36.1.9 |
| Android SDK Build-tools | 36.0.0<br>35.0.0 35.0.1<br>34.0.0<br>33.0.2 33.0.3 |
| Android SDK Platforms | 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)<br>android-33-ext5 (rev 1)<br>android-33-ext4 (rev 1)<br>android-33 (rev 3) |
| Android SDK Platform-Tools | 36.0.0 |
| Android Support Repository | 47.0.0 |
| CMake | 3.31.5 |
| Google Play services | 49 |
| Google Repository | 58 |
| NDK | 26.3.11579264 (default)<br>27.3.13750724<br>28.2.13676358 |
#### Environment variables
| Name | Value |
@@ -288,7 +287,7 @@
#### Environment variables
| Name | Value |
| ----------------- | ----------------------------------------------------------------------------------------- |
| PARALLELS_DMG_URL | https://download.parallels.com/desktop/v26/26.1.1-57288/ParallelsDesktop-26.1.1-57288.dmg |
| PARALLELS_DMG_URL | https://download.parallels.com/desktop/v20/20.4.1-55996/ParallelsDesktop-20.4.1-55996.dmg |
##### Notes
```
+102 -101
View File
@@ -1,102 +1,105 @@
| Announcements |
|-|
| [[macOS] The macOS 13 Ventura based runner images will begin deprecation on September 22nd and will be fully unsupported by December 4th for GitHub and ADO](https://github.com/actions/runner-images/issues/13046) |
| [[macOS] The additional macOS 15 Sonoma Intel-based image will be available in GitHub Actions](https://github.com/actions/runner-images/issues/13045) |
| [macOS 26 (Tahoe) is now available as a public beta in GitHub Actions](https://github.com/actions/runner-images/issues/13008) |
| [[macOS] Deprecation of 4 tools on November 3rd.](https://github.com/actions/runner-images/issues/12873) |
| [[macOS] Default Xcode on macOS 15 Sequoia will be set to Xcode 16.4 on August, 25](https://github.com/actions/runner-images/issues/12751) |
| [[macOS] macos-latest YAML-label will use macos-15 in August 2025](https://github.com/actions/runner-images/issues/12520) |
***
# macOS 14
- OS Version: macOS 14.8.2 (23J126)
- OS Version: macOS 14.7.6 (23H626)
- Kernel Version: Darwin 23.6.0
- Image Version: 20251111.0092
- Image Version: 20250825.1763
## Installed Software
### Language and Runtime
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.415, 9.0.102, 9.0.203, 9.0.306
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.413, 9.0.102, 9.0.203, 9.0.304
- Bash 3.2.57(1)-release
- Clang/LLVM 15.0.0
- Clang/LLVM (Homebrew) 15.0.7 - available on `$(brew --prefix llvm@15)/bin/clang`
- GCC 12 (Homebrew GCC 12.4.0) - available by `gcc-12` alias
- GCC 13 (Homebrew GCC 13.4.0) - available by `gcc-13` alias
- GCC 14 (Homebrew GCC 14.3.0) - available by `gcc-14` alias
- GCC 15 (Homebrew GCC 15.2.0) - available by `gcc-15` alias
- GCC 15 (Homebrew GCC 15.1.0) - available by `gcc-15` alias
- GNU Fortran 12 (Homebrew GCC 12.4.0) - available by `gfortran-12` alias
- GNU Fortran 13 (Homebrew GCC 13.4.0) - available by `gfortran-13` alias
- GNU Fortran 14 (Homebrew GCC 14.3.0) - available by `gfortran-14` alias
- GNU Fortran 15 (Homebrew GCC 15.2.0) - available by `gfortran-15` alias
- Kotlin 2.2.21-release-469
- GNU Fortran 15 (Homebrew GCC 15.1.0) - available by `gfortran-15` alias
- Kotlin 2.2.10-release-430
- Mono 6.12.0.188
- Node.js 20.19.5
- Node.js 20.19.4
- Perl 5.40.2
- Python3 3.14.0
- Ruby 3.3.10
- Python3 3.13.7
- Ruby 3.3.9
### Package Management
- Bundler 2.7.2
- Bundler 2.7.1
- Carthage 0.40.0
- CocoaPods 1.16.2
- Homebrew 4.6.20
- Homebrew 4.6.6
- NPM 10.8.2
- NuGet 6.3.1.1
- Pip3 25.3 (python 3.14)
- Pipx 1.8.0
- RubyGems 3.7.2
- Vcpkg 2025 (build from commit 8fbf295ab5)
- Pip3 25.2 (python 3.13)
- Pipx 1.7.1
- RubyGems 3.7.1
- Vcpkg 2025 (build from commit 6ecbbbdf31)
- Yarn 1.22.22
### Project Management
- Apache Ant 1.10.15
- Apache Maven 3.9.11
- Gradle 9.2.0
- Gradle 9.0.0
### Utilities
- 7-Zip 17.05
- aria2 1.37.0
- azcopy 10.31.0
- bazel 8.4.2
- azcopy 10.30.0
- bazel 8.3.1
- bazelisk 1.27.0
- bsdtar 3.5.3 - available by 'tar' alias
- Curl 8.7.1
- Git 2.50.1
- Git LFS 3.7.1
- GitHub CLI 2.83.0
- Git 2.51.0
- Git LFS 3.7.0
- GitHub CLI 2.78.0
- GNU Tar 1.35 - available by 'gtar' alias
- GNU Wget 1.25.0
- gpg (GnuPG) 2.4.8
- jq 1.8.1
- OpenSSL 1.1.1w 11 Sep 2023
- Packer 1.14.2
- Packer 1.14.0
- pkgconf 2.5.1
- Unxip 3.2
- yq 4.48.1
- yq 4.47.1
- zstd 1.5.7
- Ninja 1.13.1
### Tools
- AWS CLI 2.31.33
- AWS SAM CLI 1.146.0
- AWS CLI 2.28.16
- AWS SAM CLI 1.143.0
- AWS Session Manager CLI 1.2.707.0
- Azure CLI 2.79.0
- Azure CLI 2.76.0
- Azure CLI (azure-devops) 1.0.2
- Bicep CLI 0.38.33
- Cmake 4.1.2
- CodeQL Action Bundle 2.23.3
- Bicep CLI 0.37.4
- Cmake 3.31.6
- CodeQL Action Bundle 2.22.4
- Fastlane 2.228.0
- SwiftFormat 0.58.5
- Xcbeautify 3.1.0
- SwiftFormat 0.57.2
- Xcbeautify 2.30.1
- Xcode Command Line Tools 16.2.0.0.1.1733547573
- Xcodes 1.6.2
### Linters
### Browsers
- Safari 26.1 (19622.2.11.119.1)
- SafariDriver 26.1 (19622.2.11.119.1)
- Google Chrome 142.0.7444.60
- Google Chrome for Testing 142.0.7444.61
- ChromeDriver 142.0.7444.61
- Microsoft Edge 142.0.3595.65
- Microsoft Edge WebDriver 142.0.3595.65
- Mozilla Firefox 144.0.2
- Safari 18.5 (19621.2.5.18.1)
- SafariDriver 18.5 (19621.2.5.18.1)
- Google Chrome 139.0.7258.139
- Google Chrome for Testing 139.0.7258.138
- ChromeDriver 139.0.7258.138
- Microsoft Edge 139.0.3405.111
- Microsoft Edge WebDriver 139.0.3405.111
- Mozilla Firefox 142.0
- geckodriver 0.36.0
- Selenium server 4.38.0
- Selenium server 4.35.0
#### Environment variables
| Name | Value |
@@ -106,49 +109,47 @@
| GECKOWEBDRIVER | /opt/homebrew/opt/geckodriver/bin |
### Java
| Version | Environment Variable |
| --------------------- | -------------------- |
| 11.0.29+7 | JAVA_HOME_11_arm64 |
| 17.0.17+10 | JAVA_HOME_17_arm64 |
| 21.0.9+10.0 (default) | JAVA_HOME_21_arm64 |
| 25.0.1+8.0 | JAVA_HOME_25_arm64 |
| Version | Environment Variable |
| -------------------- | -------------------- |
| 11.0.28+6 | JAVA_HOME_11_arm64 |
| 17.0.16+8 | JAVA_HOME_17_arm64 |
| 21.0.8+9.0 (default) | JAVA_HOME_21_arm64 |
### Cached Tools
#### Ruby
- 3.1.7
- 3.2.9
- 3.3.10
- 3.4.7
- 3.3.9
- 3.4.5
#### Python
- 3.11.9
- 3.12.10
- 3.13.9
- 3.14.0
- 3.13.7
#### Node.js
- 20.19.5
- 22.21.1
- 24.11.0
- 18.20.8
- 20.19.4
- 22.18.0
#### Go
- 1.22.12
- 1.23.12
- 1.24.10
- 1.25.4
- 1.24.6
### Rust Tools
- Cargo 1.91.1
- Rust 1.91.1
- Rustdoc 1.91.1
- Cargo 1.89.0
- Rust 1.89.0
- Rustdoc 1.89.0
- Rustup 1.28.2
#### Packages
- Clippy 0.1.91
- Clippy 0.1.89
- Rustfmt 1.8.0-stable
### PowerShell Tools
- PowerShell 7.4.13
- PowerShell 7.4.11
#### PowerShell Modules
- Az: 12.5.0
@@ -229,45 +230,45 @@
| 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 (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) |
| visionOS 1.0 | 1.0 | Apple Vision Pro |
| visionOS 1.1 | 1.1 | Apple Vision Pro |
| visionOS 1.2 | 1.2 | Apple Vision Pro |
| visionOS 2.1 | 2.1 | Apple Vision Pro |
| visionOS 2.2 | 2.2 | Apple Vision Pro |
| OS | Simulators |
| ------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| iOS 17.0 | 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 | 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 | 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 | 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 | 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 | 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 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 17.2 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 17.4 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 17.5 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 18.1 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 18.2 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| watchOS 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 | 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 | 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 | 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 | 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 | 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) |
| visionOS 1.0 | Apple Vision Pro |
| visionOS 1.1 | Apple Vision Pro |
| visionOS 1.2 | Apple Vision Pro |
| visionOS 2.1 | Apple Vision Pro |
| visionOS 2.2 | Apple Vision Pro |
### Android
| Package Name | Version |
| -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Android Command Line Tools | 11.0 |
| Android Emulator | 36.2.12 |
| Android SDK Build-tools | 36.0.0 36.1.0<br>35.0.0 35.0.1<br>34.0.0<br>33.0.2 33.0.3 |
| 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)<br>android-33-ext5 (rev 1)<br>android-33-ext4 (rev 1)<br>android-33 (rev 3) |
| Android SDK Platform-Tools | 36.0.0 |
| Android Support Repository | 47.0.0 |
| CMake | 3.31.5<br>4.1.2 |
| Google Play services | 49 |
| Google Repository | 58 |
| NDK | 26.3.11579264 (default)<br>27.3.13750724<br>28.2.13676358<br>29.0.14206865 |
| Package Name | Version |
| -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Android Command Line Tools | 11.0 |
| Android Emulator | 36.1.9 |
| Android SDK Build-tools | 36.0.0<br>35.0.0 35.0.1<br>34.0.0<br>33.0.2 33.0.3 |
| Android SDK Platforms | 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)<br>android-33-ext5 (rev 1)<br>android-33-ext4 (rev 1)<br>android-33 (rev 3) |
| Android SDK Platform-Tools | 36.0.0 |
| Android Support Repository | 47.0.0 |
| CMake | 3.31.5 |
| Google Play services | 49 |
| Google Repository | 58 |
| NDK | 26.3.11579264 (default)<br>27.3.13750724<br>28.2.13676358 |
#### Environment variables
| Name | Value |
@@ -275,7 +276,7 @@
| ANDROID_HOME | /Users/runner/Library/Android/sdk |
| ANDROID_NDK | /Users/runner/Library/Android/sdk/ndk/26.3.11579264 |
| ANDROID_NDK_HOME | /Users/runner/Library/Android/sdk/ndk/26.3.11579264 |
| ANDROID_NDK_LATEST_HOME | /Users/runner/Library/Android/sdk/ndk/29.0.14206865 |
| ANDROID_NDK_LATEST_HOME | /Users/runner/Library/Android/sdk/ndk/28.2.13676358 |
| ANDROID_NDK_ROOT | /Users/runner/Library/Android/sdk/ndk/26.3.11579264 |
| ANDROID_SDK_ROOT | /Users/runner/Library/Android/sdk |
+108 -124
View File
@@ -1,105 +1,106 @@
| Announcements |
|-|
| [[macOS] The macOS 13 Ventura based runner images will begin deprecation on September 22nd and will be fully unsupported by December 4th for GitHub and ADO](https://github.com/actions/runner-images/issues/13046) |
| [[macOS] The additional macOS 15 Sonoma Intel-based image will be available in GitHub Actions](https://github.com/actions/runner-images/issues/13045) |
| [macOS 26 (Tahoe) is now available as a public beta in GitHub Actions](https://github.com/actions/runner-images/issues/13008) |
| [[macOS] Deprecation of 4 tools on November 3rd.](https://github.com/actions/runner-images/issues/12873) |
| [[macOS] Default Xcode on macOS 15 Sequoia will be set to Xcode 16.4 on August, 25](https://github.com/actions/runner-images/issues/12751) |
| [[macOS] macos-latest YAML-label will use macos-15 in August 2025](https://github.com/actions/runner-images/issues/12520) |
***
# macOS 15
- OS Version: macOS 15.7.1 (24G231)
- Kernel Version: Darwin 24.6.0
- Image Version: 20251103.0112
- OS Version: macOS 15.5 (24F5068b)
- Kernel Version: Darwin 24.5.0
- Image Version: 20250825.1768
## Installed Software
### Language and Runtime
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.415, 9.0.102, 9.0.203, 9.0.306
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.413, 9.0.102, 9.0.203, 9.0.304
- Bash 3.2.57(1)-release
- Clang/LLVM 17.0.0
- Clang/LLVM 16.0.0
- Clang/LLVM (Homebrew) 18.1.8 - available on `$(brew --prefix llvm@18)/bin/clang`
- GCC 12 (Homebrew GCC 12.4.0) - available by `gcc-12` alias
- GCC 13 (Homebrew GCC 13.4.0) - available by `gcc-13` alias
- GCC 14 (Homebrew GCC 14.3.0) - available by `gcc-14` alias
- GCC 15 (Homebrew GCC 15.2.0) - available by `gcc-15` alias
- GCC 15 (Homebrew GCC 15.1.0) - available by `gcc-15` alias
- GNU Fortran 12 (Homebrew GCC 12.4.0) - available by `gfortran-12` alias
- GNU Fortran 13 (Homebrew GCC 13.4.0) - available by `gfortran-13` alias
- GNU Fortran 14 (Homebrew GCC 14.3.0) - available by `gfortran-14` alias
- GNU Fortran 15 (Homebrew GCC 15.2.0) - available by `gfortran-15` alias
- Kotlin 2.2.21-release-469
- Node.js 22.21.1
- GNU Fortran 15 (Homebrew GCC 15.1.0) - available by `gfortran-15` alias
- Kotlin 2.2.10-release-430
- Node.js 22.18.0
- Perl 5.40.2
- PHP 8.4.14
- Python3 3.14.0
- Ruby 3.3.10
- PHP 8.4.11
- Python3 3.13.7
- Ruby 3.3.9
### Package Management
- Bundler 2.7.2
- Bundler 2.7.1
- Carthage 0.40.0
- CocoaPods 1.16.2
- Composer 2.8.12
- Homebrew 4.6.19
- NPM 10.9.4
- Pip3 25.3 (python 3.14)
- Pipx 1.8.0
- RubyGems 3.7.2
- Vcpkg 2025 (build from commit e3ed41868d)
- Composer 2.8.11
- Homebrew 4.6.6
- NPM 10.9.3
- Pip3 25.2 (python 3.13)
- Pipx 1.7.1
- RubyGems 3.7.1
- Vcpkg 2025 (build from commit 6ecbbbdf31)
- Yarn 1.22.22
### Project Management
- Apache Ant 1.10.15
- Apache Maven 3.9.11
- Gradle 9.2.0
- Gradle 9.0.0
### Utilities
- 7-Zip 17.05
- aria2 1.37.0
- azcopy 10.31.0
- bazel 8.4.2
- azcopy 10.30.0
- bazel 8.3.1
- bazelisk 1.27.0
- bsdtar 3.5.3 - available by 'tar' alias
- Curl 8.16.0
- Git 2.50.1
- Git LFS 3.7.1
- GitHub CLI 2.82.1
- Curl 8.15.0
- Git 2.51.0
- Git LFS 3.7.0
- GitHub CLI 2.78.0
- GNU Tar 1.35 - available by 'gtar' alias
- GNU Wget 1.25.0
- gpg (GnuPG) 2.4.8
- jq 1.8.1
- OpenSSL 1.1.1w 11 Sep 2023
- Packer 1.14.2
- Packer 1.14.0
- pkgconf 2.5.1
- Unxip 3.2
- yq 4.48.1
- yq 4.47.1
- zstd 1.5.7
- Ninja 1.13.1
### Tools
- AWS CLI 2.31.27
- AWS SAM CLI 1.145.2
- AWS CLI 2.28.16
- AWS SAM CLI 1.143.0
- AWS Session Manager CLI 1.2.707.0
- Azure CLI 2.78.0
- Azure CLI 2.76.0
- Azure CLI (azure-devops) 1.0.2
- Bicep CLI 0.38.33
- Cmake 4.1.2
- CodeQL Action Bundle 2.23.3
- Bicep CLI 0.37.4
- Cmake 3.31.6
- CodeQL Action Bundle 2.22.4
- Fastlane 2.228.0
- SwiftFormat 0.58.5
- Xcbeautify 3.1.0
- SwiftFormat 0.57.2
- Xcbeautify 2.30.1
- Xcode Command Line Tools 16.4.0.0.1.1747106510
- Xcodes 1.6.2
### Linters
- SwiftLint 0.62.2
- SwiftLint 0.59.1
### Browsers
- Safari 26.0.1 (20622.1.22.118.4)
- SafariDriver 26.0.1 (20622.1.22.118.4)
- Google Chrome 142.0.7444.60
- Google Chrome for Testing 142.0.7444.59
- ChromeDriver 142.0.7444.59
- Microsoft Edge 142.0.3595.53
- Microsoft Edge WebDriver 142.0.3595.53
- Mozilla Firefox 144.0.2
- Safari 18.5 (20621.2.5.11.5)
- SafariDriver 18.5 (20621.2.5.11.5)
- Google Chrome 139.0.7258.139
- Google Chrome for Testing 139.0.7258.138
- ChromeDriver 139.0.7258.138
- Microsoft Edge 139.0.3405.111
- Microsoft Edge WebDriver 139.0.3405.111
- Mozilla Firefox 142.0
- geckodriver 0.36.0
- Selenium server 4.38.0
- Selenium server 4.35.0
#### Environment variables
| Name | Value |
@@ -114,46 +115,44 @@
| 11.0.28+6 | JAVA_HOME_11_X64 |
| 17.0.16+8 | JAVA_HOME_17_X64 |
| 21.0.8+9.0 (default) | JAVA_HOME_21_X64 |
| 25.0.1+8.0 | JAVA_HOME_25_X64 |
### Cached Tools
#### Ruby
- 3.1.7
- 3.2.9
- 3.3.10
- 3.4.7
- 3.3.9
- 3.4.5
#### Python
- 3.9.24
- 3.10.19
- 3.9.23
- 3.10.18
- 3.11.9
- 3.12.10
- 3.13.9
- 3.14.0
- 3.13.7
#### Node.js
- 20.19.5
- 22.21.1
- 24.11.0
- 18.20.8
- 20.19.4
- 22.18.0
#### Go
- 1.22.12
- 1.23.12
- 1.24.9
- 1.25.3
- 1.24.6
### Rust Tools
- Cargo 1.91.0
- Rust 1.91.0
- Rustdoc 1.91.0
- Cargo 1.89.0
- Rust 1.89.0
- Rustdoc 1.89.0
- Rustup 1.28.2
#### Packages
- Clippy 0.1.91
- Clippy 0.1.89
- Rustfmt 1.8.0-stable
### PowerShell Tools
- PowerShell 7.4.13
- PowerShell 7.4.11
#### PowerShell Modules
- Az: 12.5.0
@@ -161,15 +160,14 @@
- PSScriptAnalyzer: 1.24.0
### Xcode
| Version | Build | Path | Symlinks |
| -------------- | -------- | ---------------------------------------------- | -------------------------------------------------------------- |
| 26.1 | 17B54 | /Applications/Xcode_26.1_Release_Candidate.app | /Applications/Xcode_26.1.0.app<br>/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.0 (beta) | 17A5305f | /Applications/Xcode_26_beta_6.app | /Applications/Xcode_26.0.0.app<br>/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 |
@@ -179,101 +177,88 @@
| macOS 15.2 | macosx15.2 | 16.2 |
| macOS 15.4 | macosx15.4 | 16.3 |
| macOS 15.5 | macosx15.5 | 16.4 |
| macOS 26.0 | macosx26.0 | 26.0.1 |
| macOS 26.1 | macosx26.1 | 26.1 |
| macOS 26.0 | macosx26.0 | 26.0 |
| iOS 18.0 | iphoneos18.0 | 16.0 |
| iOS 18.1 | iphoneos18.1 | 16.1 |
| iOS 18.2 | iphoneos18.2 | 16.2 |
| iOS 18.4 | iphoneos18.4 | 16.3 |
| iOS 18.5 | iphoneos18.5 | 16.4 |
| iOS 26.0 | iphoneos26.0 | 26.0.1 |
| iOS 26.1 | iphoneos26.1 | 26.1 |
| iOS 26.0 | iphoneos26.0 | 26.0 |
| Simulator - iOS 18.0 | iphonesimulator18.0 | 16.0 |
| Simulator - iOS 18.1 | iphonesimulator18.1 | 16.1 |
| Simulator - iOS 18.2 | iphonesimulator18.2 | 16.2 |
| Simulator - iOS 18.4 | iphonesimulator18.4 | 16.3 |
| Simulator - iOS 18.5 | iphonesimulator18.5 | 16.4 |
| Simulator - iOS 26.0 | iphonesimulator26.0 | 26.0.1 |
| Simulator - iOS 26.1 | iphonesimulator26.1 | 26.1 |
| Simulator - iOS 26.0 | iphonesimulator26.0 | 26.0 |
| tvOS 18.0 | appletvos18.0 | 16.0 |
| tvOS 18.1 | appletvos18.1 | 16.1 |
| tvOS 18.2 | appletvos18.2 | 16.2 |
| tvOS 18.4 | appletvos18.4 | 16.3 |
| tvOS 18.5 | appletvos18.5 | 16.4 |
| tvOS 26.0 | appletvos26.0 | 26.0.1 |
| tvOS 26.1 | appletvos26.1 | 26.1 |
| tvOS 26.0 | appletvos26.0 | 26.0 |
| Simulator - tvOS 18.0 | appletvsimulator18.0 | 16.0 |
| Simulator - tvOS 18.1 | appletvsimulator18.1 | 16.1 |
| Simulator - tvOS 18.2 | appletvsimulator18.2 | 16.2 |
| Simulator - tvOS 18.4 | appletvsimulator18.4 | 16.3 |
| Simulator - tvOS 18.5 | appletvsimulator18.5 | 16.4 |
| Simulator - tvOS 26.0 | appletvsimulator26.0 | 26.0.1 |
| Simulator - tvOS 26.1 | appletvsimulator26.1 | 26.1 |
| Simulator - tvOS 26.0 | appletvsimulator26.0 | 26.0 |
| watchOS 11.0 | watchos11.0 | 16.0 |
| watchOS 11.1 | watchos11.1 | 16.1 |
| watchOS 11.2 | watchos11.2 | 16.2 |
| watchOS 11.4 | watchos11.4 | 16.3 |
| watchOS 11.5 | watchos11.5 | 16.4 |
| watchOS 26.0 | watchos26.0 | 26.0.1 |
| watchOS 26.1 | watchos26.1 | 26.1 |
| watchOS 26.0 | watchos26.0 | 26.0 |
| Simulator - watchOS 11.0 | watchsimulator11.0 | 16.0 |
| Simulator - watchOS 11.1 | watchsimulator11.1 | 16.1 |
| Simulator - watchOS 11.2 | watchsimulator11.2 | 16.2 |
| Simulator - watchOS 11.4 | watchsimulator11.4 | 16.3 |
| Simulator - watchOS 11.5 | watchsimulator11.5 | 16.4 |
| Simulator - watchOS 26.0 | watchsimulator26.0 | 26.0.1 |
| Simulator - watchOS 26.1 | watchsimulator26.1 | 26.1 |
| Simulator - watchOS 26.0 | watchsimulator26.0 | 26.0 |
| visionOS 2.0 | xros2.0 | 16.0 |
| visionOS 2.1 | xros2.1 | 16.1 |
| visionOS 2.2 | xros2.2 | 16.2 |
| visionOS 2.4 | xros2.4 | 16.3 |
| visionOS 2.5 | xros2.5 | 16.4 |
| visionOS 26.0 | xros26.0 | 26.0.1 |
| visionOS 26.1 | xros26.1 | 26.1 |
| visionOS 26.0 | xros26.0 | 26.0 |
| Simulator - visionOS 2.0 | xrsimulator2.0 | 16.0 |
| Simulator - visionOS 2.1 | xrsimulator2.1 | 16.1 |
| Simulator - visionOS 2.2 | xrsimulator2.2 | 16.2 |
| Simulator - visionOS 2.4 | xrsimulator2.4 | 16.3 |
| Simulator - visionOS 2.5 | xrsimulator2.5 | 16.4 |
| Simulator - visionOS 26.0 | xrsimulator26.0 | 26.0.1 |
| Simulator - visionOS 26.1 | xrsimulator26.1 | 26.1 |
| Simulator - visionOS 26.0 | xrsimulator26.0 | 26.0 |
| DriverKit 24.0 | driverkit24.0 | 16.0 |
| DriverKit 24.1 | driverkit24.1 | 16.1 |
| DriverKit 24.2 | driverkit24.2 | 16.2 |
| DriverKit 24.4 | driverkit24.4 | 16.3 |
| DriverKit 24.5 | driverkit24.5 | 16.4 |
| DriverKit 25.0 | driverkit25.0 | 26.0.1 |
| DriverKit 25.1 | driverkit25.1 | 26.1 |
| DriverKit 25.0 | driverkit25.0 | 26.0 |
#### Installed Simulators
| Name | OS | Simulators |
| ------------ | ------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| iOS 18.4 | 18.4 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone 16e<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad (A16)<br>iPad Air 11-inch (M2)<br>iPad Air 11-inch (M3)<br>iPad Air 13-inch (M2)<br>iPad Air 13-inch (M3)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
| iOS 18.5 | 18.5 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone 16e<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad (A16)<br>iPad Air 11-inch (M2)<br>iPad Air 11-inch (M3)<br>iPad Air 13-inch (M2)<br>iPad Air 13-inch (M3)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
| iOS 18.6 | 18.6 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone 16e<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad (A16)<br>iPad Air 11-inch (M2)<br>iPad Air 11-inch (M3)<br>iPad Air 13-inch (M2)<br>iPad Air 13-inch (M3)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
| iOS 26.0 | 26.0.1 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone 16e<br>iPhone 17<br>iPhone 17 Pro<br>iPhone 17 Pro Max<br>iPhone Air<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad (A16)<br>iPad Air 11-inch (M2)<br>iPad Air 11-inch (M3)<br>iPad Air 13-inch (M2)<br>iPad Air 13-inch (M3)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 11-inch (M5)<br>iPad Pro 13-inch (M4)<br>iPad Pro 13-inch (M5) |
| tvOS 18.2 | 18.2 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 18.4 | 18.4 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 18.5 | 18.5 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 26.0 | 26.0 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| 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) |
| watchOS 11.4 | 11.4 | 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.5 | 11.5 | 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 26.0 | 26.0 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch SE 3 (40mm)<br>Apple Watch SE 3 (44mm)<br>Apple Watch Series 10 (42mm)<br>Apple Watch Series 10 (46mm)<br>Apple Watch Series 11 (42mm)<br>Apple Watch Series 11 (46mm)<br>Apple Watch Ultra 2 (49mm)<br>Apple Watch Ultra 3 (49mm) |
| OS | Simulators |
| ------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| iOS 18.4 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone 16e<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad (A16)<br>iPad Air 11-inch (M2)<br>iPad Air 11-inch (M3)<br>iPad Air 13-inch (M2)<br>iPad Air 13-inch (M3)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
| iOS 18.5 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone 16e<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad (A16)<br>iPad Air 11-inch (M2)<br>iPad Air 11-inch (M3)<br>iPad Air 13-inch (M2)<br>iPad Air 13-inch (M3)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
| iOS 18.6 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone 16e<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad (A16)<br>iPad Air 11-inch (M2)<br>iPad Air 11-inch (M3)<br>iPad Air 13-inch (M2)<br>iPad Air 13-inch (M3)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
| tvOS 18.2 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 18.4 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 18.5 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| watchOS 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) |
| watchOS 11.4 | 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.5 | 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 |
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Android Command Line Tools | 16.0 |
| Android Emulator | 36.2.12 |
| 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.0 |
| Android Support Repository | 47.0.0 |
| CMake | 3.31.5 |
| Google Play services | 49 |
| Google Repository | 58 |
| NDK | 26.3.11579264<br>27.3.13750724 (default)<br>28.2.13676358 |
| Package Name | Version |
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Android Command Line Tools | 16.0 |
| Android Emulator | 36.1.9 |
| Android SDK Build-tools | 36.0.0<br>35.0.0 35.0.1 |
| Android SDK Platforms | 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)<br>android-33-ext5 (rev 1)<br>android-33-ext4 (rev 1) |
| Android SDK Platform-Tools | 36.0.0 |
| Android Support Repository | 47.0.0 |
| CMake | 3.31.5 |
| Google Play services | 49 |
| Google Repository | 58 |
| NDK | 26.3.11579264<br>27.3.13750724 (default)<br>28.2.13676358 |
#### Environment variables
| Name | Value |
@@ -286,12 +271,11 @@
| ANDROID_SDK_ROOT | /Users/runner/Library/Android/sdk |
### Miscellaneous
- Tcl/Tk 8.6.17
#### Environment variables
| Name | Value |
| ----------------- | ----------------------------------------------------------------------------------------- |
| PARALLELS_DMG_URL | https://download.parallels.com/desktop/v26/26.1.1-57288/ParallelsDesktop-26.1.1-57288.dmg |
| PARALLELS_DMG_URL | https://download.parallels.com/desktop/v20/20.4.1-55996/ParallelsDesktop-20.4.1-55996.dmg |
##### Notes
```
+111 -128
View File
@@ -1,100 +1,103 @@
| Announcements |
|-|
| [[macOS] The macOS 13 Ventura based runner images will begin deprecation on September 22nd and will be fully unsupported by December 4th for GitHub and ADO](https://github.com/actions/runner-images/issues/13046) |
| [[macOS] The additional macOS 15 Sonoma Intel-based image will be available in GitHub Actions](https://github.com/actions/runner-images/issues/13045) |
| [macOS 26 (Tahoe) is now available as a public beta in GitHub Actions](https://github.com/actions/runner-images/issues/13008) |
| [[macOS] Deprecation of 4 tools on November 3rd.](https://github.com/actions/runner-images/issues/12873) |
| [[macOS] Default Xcode on macOS 15 Sequoia will be set to Xcode 16.4 on August, 25](https://github.com/actions/runner-images/issues/12751) |
| [[macOS] macos-latest YAML-label will use macos-15 in August 2025](https://github.com/actions/runner-images/issues/12520) |
***
# macOS 15
- OS Version: macOS 15.7.1 (24G231)
- Kernel Version: Darwin 24.6.0
- Image Version: 20251104.0104
- OS Version: macOS 15.5 (24F74)
- Kernel Version: Darwin 24.5.0
- Image Version: 20250830.2281
## Installed Software
### Language and Runtime
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.415, 9.0.102, 9.0.203, 9.0.306
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.413, 9.0.102, 9.0.203, 9.0.304
- Bash 3.2.57(1)-release
- Clang/LLVM 17.0.0
- Clang/LLVM 16.0.0
- Clang/LLVM (Homebrew) 18.1.8 - available on `$(brew --prefix llvm@18)/bin/clang`
- GCC 12 (Homebrew GCC 12.4.0) - available by `gcc-12` alias
- GCC 13 (Homebrew GCC 13.4.0) - available by `gcc-13` alias
- GCC 14 (Homebrew GCC 14.3.0) - available by `gcc-14` alias
- GCC 15 (Homebrew GCC 15.2.0) - available by `gcc-15` alias
- GCC 15 (Homebrew GCC 15.1.0) - available by `gcc-15` alias
- GNU Fortran 12 (Homebrew GCC 12.4.0) - available by `gfortran-12` alias
- GNU Fortran 13 (Homebrew GCC 13.4.0) - available by `gfortran-13` alias
- GNU Fortran 14 (Homebrew GCC 14.3.0) - available by `gfortran-14` alias
- GNU Fortran 15 (Homebrew GCC 15.2.0) - available by `gfortran-15` alias
- Kotlin 2.2.21-release-469
- Node.js 22.21.1
- GNU Fortran 15 (Homebrew GCC 15.1.0) - available by `gfortran-15` alias
- Kotlin 2.2.10-release-430
- Node.js 22.19.0
- Perl 5.40.2
- Python3 3.14.0
- Ruby 3.3.10
- Python3 3.13.7
- Ruby 3.3.9
### Package Management
- Bundler 2.7.2
- Bundler 2.7.1
- Carthage 0.40.0
- CocoaPods 1.16.2
- Homebrew 4.6.20
- NPM 10.9.4
- Pip3 25.3 (python 3.14)
- Pipx 1.8.0
- RubyGems 3.7.2
- Vcpkg 2025 (build from commit b27f6bfad3)
- Homebrew 4.6.7
- NPM 10.9.3
- Pip3 25.2 (python 3.13)
- Pipx 1.7.1
- RubyGems 3.7.1
- Vcpkg 2025 (build from commit 8394d2150d)
- Yarn 1.22.22
### Project Management
- Apache Ant 1.10.15
- Apache Maven 3.9.11
- Gradle 9.2.0
- Gradle 9.0.0
### Utilities
- 7-Zip 17.05
- aria2 1.37.0
- azcopy 10.31.0
- bazel 8.4.2
- azcopy 10.30.0
- bazel 8.3.1
- bazelisk 1.27.0
- bsdtar 3.5.3 - available by 'tar' alias
- Curl 8.7.1
- Git 2.50.1
- Git LFS 3.7.1
- GitHub CLI 2.82.1
- Git 2.51.0
- Git LFS 3.7.0
- GitHub CLI 2.78.0
- GNU Tar 1.35 - available by 'gtar' alias
- GNU Wget 1.25.0
- gpg (GnuPG) 2.4.8
- jq 1.8.1
- OpenSSL 1.1.1w 11 Sep 2023
- Packer 1.14.2
- Packer 1.14.0
- pkgconf 2.5.1
- Unxip 3.2
- yq 4.48.1
- yq 4.47.1
- zstd 1.5.7
- Ninja 1.13.1
### Tools
- AWS CLI 2.31.28
- AWS SAM CLI 1.145.2
- AWS CLI 2.28.21
- AWS SAM CLI 1.143.0
- AWS Session Manager CLI 1.2.707.0
- Azure CLI 2.78.0
- Azure CLI 2.76.0
- Azure CLI (azure-devops) 1.0.2
- Bicep CLI 0.38.33
- Cmake 4.1.2
- CodeQL Action Bundle 2.23.3
- Bicep CLI 0.37.4
- Cmake 3.31.6
- CodeQL Action Bundle 2.22.4
- Fastlane 2.228.0
- SwiftFormat 0.58.5
- Xcbeautify 3.1.0
- SwiftFormat 0.57.2
- Xcbeautify 2.30.1
- Xcode Command Line Tools 16.4.0.0.1.1747106510
- Xcodes 1.6.2
### Linters
### Browsers
- Safari 26.0.1 (20622.1.22.118.4)
- SafariDriver 26.0.1 (20622.1.22.118.4)
- Google Chrome 142.0.7444.60
- Google Chrome for Testing 142.0.7444.59
- ChromeDriver 142.0.7444.59
- Microsoft Edge 142.0.3595.53
- Microsoft Edge WebDriver 142.0.3595.53
- Mozilla Firefox 144.0.2
- Safari 18.5 (20621.2.5.11.8)
- SafariDriver 18.5 (20621.2.5.11.8)
- Google Chrome 139.0.7258.155
- Google Chrome for Testing 139.0.7258.154
- ChromeDriver 139.0.7258.154
- Microsoft Edge 139.0.3405.125
- Microsoft Edge WebDriver 139.0.3405.125
- Mozilla Firefox 142.0.1
- geckodriver 0.36.0
- Selenium server 4.38.0
- Selenium server 4.35.0
#### Environment variables
| Name | Value |
@@ -104,49 +107,47 @@
| GECKOWEBDRIVER | /opt/homebrew/opt/geckodriver/bin |
### Java
| Version | Environment Variable |
| --------------------- | -------------------- |
| 11.0.29+7 | JAVA_HOME_11_arm64 |
| 17.0.17+10 | JAVA_HOME_17_arm64 |
| 21.0.9+10.0 (default) | JAVA_HOME_21_arm64 |
| 25.0.1+8.0 | JAVA_HOME_25_arm64 |
| Version | Environment Variable |
| -------------------- | -------------------- |
| 11.0.28+6 | JAVA_HOME_11_arm64 |
| 17.0.16+8 | JAVA_HOME_17_arm64 |
| 21.0.8+9.0 (default) | JAVA_HOME_21_arm64 |
### Cached Tools
#### Ruby
- 3.1.7
- 3.2.9
- 3.3.10
- 3.4.7
- 3.3.9
- 3.4.5
#### Python
- 3.11.9
- 3.12.10
- 3.13.9
- 3.14.0
- 3.13.7
#### Node.js
- 20.19.5
- 22.21.1
- 24.11.0
- 18.20.8
- 20.19.4
- 22.19.0
#### Go
- 1.22.12
- 1.23.12
- 1.24.9
- 1.25.3
- 1.24.6
### Rust Tools
- Cargo 1.91.0
- Rust 1.91.0
- Rustdoc 1.91.0
- Cargo 1.89.0
- Rust 1.89.0
- Rustdoc 1.89.0
- Rustup 1.28.2
#### Packages
- Clippy 0.1.91
- Clippy 0.1.89
- Rustfmt 1.8.0-stable
### PowerShell Tools
- PowerShell 7.4.13
- PowerShell 7.4.11
#### PowerShell Modules
- Az: 12.5.0
@@ -154,15 +155,14 @@
- PSScriptAnalyzer: 1.24.0
### Xcode
| Version | Build | Path | Symlinks |
| -------------- | -------- | ---------------------------------------------- | -------------------------------------------------------------- |
| 26.1 | 17B54 | /Applications/Xcode_26.1_Release_Candidate.app | /Applications/Xcode_26.1.0.app<br>/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.0 (beta) | 17A5305k | /Applications/Xcode_26_beta_7.app | /Applications/Xcode_26.0.0.app<br>/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 |
@@ -172,105 +172,91 @@
| macOS 15.2 | macosx15.2 | 16.2 |
| macOS 15.4 | macosx15.4 | 16.3 |
| macOS 15.5 | macosx15.5 | 16.4 |
| macOS 26.0 | macosx26.0 | 26.0.1 |
| macOS 26.1 | macosx26.1 | 26.1 |
| macOS 26.0 | macosx26.0 | 26.0 |
| iOS 18.0 | iphoneos18.0 | 16.0 |
| iOS 18.1 | iphoneos18.1 | 16.1 |
| iOS 18.2 | iphoneos18.2 | 16.2 |
| iOS 18.4 | iphoneos18.4 | 16.3 |
| iOS 18.5 | iphoneos18.5 | 16.4 |
| iOS 26.0 | iphoneos26.0 | 26.0.1 |
| iOS 26.1 | iphoneos26.1 | 26.1 |
| iOS 26.0 | iphoneos26.0 | 26.0 |
| Simulator - iOS 18.0 | iphonesimulator18.0 | 16.0 |
| Simulator - iOS 18.1 | iphonesimulator18.1 | 16.1 |
| Simulator - iOS 18.2 | iphonesimulator18.2 | 16.2 |
| Simulator - iOS 18.4 | iphonesimulator18.4 | 16.3 |
| Simulator - iOS 18.5 | iphonesimulator18.5 | 16.4 |
| Simulator - iOS 26.0 | iphonesimulator26.0 | 26.0.1 |
| Simulator - iOS 26.1 | iphonesimulator26.1 | 26.1 |
| Simulator - iOS 26.0 | iphonesimulator26.0 | 26.0 |
| tvOS 18.0 | appletvos18.0 | 16.0 |
| tvOS 18.1 | appletvos18.1 | 16.1 |
| tvOS 18.2 | appletvos18.2 | 16.2 |
| tvOS 18.4 | appletvos18.4 | 16.3 |
| tvOS 18.5 | appletvos18.5 | 16.4 |
| tvOS 26.0 | appletvos26.0 | 26.0.1 |
| tvOS 26.1 | appletvos26.1 | 26.1 |
| tvOS 26.0 | appletvos26.0 | 26.0 |
| Simulator - tvOS 18.0 | appletvsimulator18.0 | 16.0 |
| Simulator - tvOS 18.1 | appletvsimulator18.1 | 16.1 |
| Simulator - tvOS 18.2 | appletvsimulator18.2 | 16.2 |
| Simulator - tvOS 18.4 | appletvsimulator18.4 | 16.3 |
| Simulator - tvOS 18.5 | appletvsimulator18.5 | 16.4 |
| Simulator - tvOS 26.0 | appletvsimulator26.0 | 26.0.1 |
| Simulator - tvOS 26.1 | appletvsimulator26.1 | 26.1 |
| Simulator - tvOS 26.0 | appletvsimulator26.0 | 26.0 |
| watchOS 11.0 | watchos11.0 | 16.0 |
| watchOS 11.1 | watchos11.1 | 16.1 |
| watchOS 11.2 | watchos11.2 | 16.2 |
| watchOS 11.4 | watchos11.4 | 16.3 |
| watchOS 11.5 | watchos11.5 | 16.4 |
| watchOS 26.0 | watchos26.0 | 26.0.1 |
| watchOS 26.1 | watchos26.1 | 26.1 |
| watchOS 26.0 | watchos26.0 | 26.0 |
| Simulator - watchOS 11.0 | watchsimulator11.0 | 16.0 |
| Simulator - watchOS 11.1 | watchsimulator11.1 | 16.1 |
| Simulator - watchOS 11.2 | watchsimulator11.2 | 16.2 |
| Simulator - watchOS 11.4 | watchsimulator11.4 | 16.3 |
| Simulator - watchOS 11.5 | watchsimulator11.5 | 16.4 |
| Simulator - watchOS 26.0 | watchsimulator26.0 | 26.0.1 |
| Simulator - watchOS 26.1 | watchsimulator26.1 | 26.1 |
| Simulator - watchOS 26.0 | watchsimulator26.0 | 26.0 |
| visionOS 2.0 | xros2.0 | 16.0 |
| visionOS 2.1 | xros2.1 | 16.1 |
| visionOS 2.2 | xros2.2 | 16.2 |
| visionOS 2.4 | xros2.4 | 16.3 |
| visionOS 2.5 | xros2.5 | 16.4 |
| visionOS 26.0 | xros26.0 | 26.0.1 |
| visionOS 26.1 | xros26.1 | 26.1 |
| visionOS 26.0 | xros26.0 | 26.0 |
| Simulator - visionOS 2.0 | xrsimulator2.0 | 16.0 |
| Simulator - visionOS 2.1 | xrsimulator2.1 | 16.1 |
| Simulator - visionOS 2.2 | xrsimulator2.2 | 16.2 |
| Simulator - visionOS 2.4 | xrsimulator2.4 | 16.3 |
| Simulator - visionOS 2.5 | xrsimulator2.5 | 16.4 |
| Simulator - visionOS 26.0 | xrsimulator26.0 | 26.0.1 |
| Simulator - visionOS 26.1 | xrsimulator26.1 | 26.1 |
| Simulator - visionOS 26.0 | xrsimulator26.0 | 26.0 |
| DriverKit 24.0 | driverkit24.0 | 16.0 |
| DriverKit 24.1 | driverkit24.1 | 16.1 |
| DriverKit 24.2 | driverkit24.2 | 16.2 |
| DriverKit 24.4 | driverkit24.4 | 16.3 |
| DriverKit 24.5 | driverkit24.5 | 16.4 |
| DriverKit 25.0 | driverkit25.0 | 26.0.1 |
| DriverKit 25.1 | driverkit25.1 | 26.1 |
| DriverKit 25.0 | driverkit25.0 | 26.0 |
#### Installed Simulators
| Name | OS | Simulators |
| ------------- | ------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| iOS 18.4 | 18.4 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone 16e<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad (A16)<br>iPad Air 11-inch (M2)<br>iPad Air 11-inch (M3)<br>iPad Air 13-inch (M2)<br>iPad Air 13-inch (M3)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
| iOS 18.5 | 18.5 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone 16e<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad (A16)<br>iPad Air 11-inch (M2)<br>iPad Air 11-inch (M3)<br>iPad Air 13-inch (M2)<br>iPad Air 13-inch (M3)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
| iOS 18.6 | 18.6 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone 16e<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad (A16)<br>iPad Air 11-inch (M2)<br>iPad Air 11-inch (M3)<br>iPad Air 13-inch (M2)<br>iPad Air 13-inch (M3)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
| iOS 26.0 | 26.0.1 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone 16e<br>iPhone 17<br>iPhone 17 Pro<br>iPhone 17 Pro Max<br>iPhone Air<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad (A16)<br>iPad Air 11-inch (M2)<br>iPad Air 11-inch (M3)<br>iPad Air 13-inch (M2)<br>iPad Air 13-inch (M3)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 11-inch (M5)<br>iPad Pro 13-inch (M4)<br>iPad Pro 13-inch (M5) |
| tvOS 18.2 | 18.2 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 18.4 | 18.4 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 18.5 | 18.5 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 26.0 | 26.0 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| 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) |
| watchOS 11.4 | 11.4 | 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.5 | 11.5 | 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 26.0 | 26.0 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch SE 3 (40mm)<br>Apple Watch SE 3 (44mm)<br>Apple Watch Series 10 (42mm)<br>Apple Watch Series 10 (46mm)<br>Apple Watch Series 11 (42mm)<br>Apple Watch Series 11 (46mm)<br>Apple Watch Ultra 2 (49mm)<br>Apple Watch Ultra 3 (49mm) |
| visionOS 2.3 | 2.3 | Apple Vision Pro |
| visionOS 2.4 | 2.4 | Apple Vision Pro |
| visionOS 2.5 | 2.5 | Apple Vision Pro |
| visionOS 26.0 | 26.0 | Apple Vision Pro |
| OS | Simulators |
| ------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| iOS 18.4 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone 16e<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad (A16)<br>iPad Air 11-inch (M2)<br>iPad Air 11-inch (M3)<br>iPad Air 13-inch (M2)<br>iPad Air 13-inch (M3)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
| iOS 18.5 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone 16e<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad (A16)<br>iPad Air 11-inch (M2)<br>iPad Air 11-inch (M3)<br>iPad Air 13-inch (M2)<br>iPad Air 13-inch (M3)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
| iOS 18.6 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone 16e<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad (A16)<br>iPad Air 11-inch (M2)<br>iPad Air 11-inch (M3)<br>iPad Air 13-inch (M2)<br>iPad Air 13-inch (M3)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
| tvOS 18.2 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 18.4 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 18.5 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| watchOS 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) |
| watchOS 11.4 | 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.5 | 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) |
| visionOS 2.3 | Apple Vision Pro |
| visionOS 2.4 | Apple Vision Pro |
| visionOS 2.5 | Apple Vision Pro |
### Android
| Package Name | Version |
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Android Command Line Tools | 16.0 |
| Android Emulator | 36.2.12 |
| 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.0 |
| Android Support Repository | 47.0.0 |
| CMake | 3.31.5 |
| Google Play services | 49 |
| Google Repository | 58 |
| NDK | 26.3.11579264<br>27.3.13750724 (default)<br>28.2.13676358 |
| Package Name | Version |
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Android Command Line Tools | 16.0 |
| Android Emulator | 36.1.9 |
| Android SDK Build-tools | 36.0.0<br>35.0.0 35.0.1 |
| Android SDK Platforms | 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)<br>android-33-ext5 (rev 1)<br>android-33-ext4 (rev 1) |
| Android SDK Platform-Tools | 36.0.0 |
| Android Support Repository | 47.0.0 |
| CMake | 3.31.5 |
| Google Play services | 49 |
| Google Repository | 58 |
| NDK | 26.3.11579264<br>27.3.13750724 (default)<br>28.2.13676358 |
#### Environment variables
| Name | Value |
@@ -282,6 +268,3 @@
| ANDROID_NDK_ROOT | /Users/runner/Library/Android/sdk/ndk/27.3.13750724 |
| ANDROID_SDK_ROOT | /Users/runner/Library/Android/sdk |
### Miscellaneous
- Tcl/Tk 8.6.17
-236
View File
@@ -1,236 +0,0 @@
| Announcements |
|-|
| [[macOS] The macOS 13 Ventura based runner images will begin deprecation on September 22nd and will be fully unsupported by December 4th for GitHub and ADO](https://github.com/actions/runner-images/issues/13046) |
| [[macOS] The additional macOS 15 Sonoma Intel-based image will be available in GitHub Actions](https://github.com/actions/runner-images/issues/13045) |
| [macOS 26 (Tahoe) is now available as a public beta in GitHub Actions](https://github.com/actions/runner-images/issues/13008) |
| [[macOS] Deprecation of 4 tools on November 3rd.](https://github.com/actions/runner-images/issues/12873) |
***
# macOS 26
- OS Version: macOS 26.0.1 (25A362)
- Kernel Version: Darwin 25.0.0
- Image Version: 20251103.0095
## Installed Software
### Language and Runtime
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.415, 9.0.102, 9.0.203, 9.0.306
- Bash 3.2.57(1)-release
- Clang/LLVM 17.0.0
- Clang/LLVM (Homebrew) 20.1.8 - available on `$(brew --prefix llvm@20)/bin/clang`
- GCC 13 (Homebrew GCC 13.4.0) - available by `gcc-13` alias
- GCC 14 (Homebrew GCC 14.3.0) - available by `gcc-14` alias
- GCC 15 (Homebrew GCC 15.2.0) - available by `gcc-15` alias
- GNU Fortran 13 (Homebrew GCC 13.4.0) - available by `gfortran-13` alias
- GNU Fortran 14 (Homebrew GCC 14.3.0) - available by `gfortran-14` alias
- GNU Fortran 15 (Homebrew GCC 15.2.0) - available by `gfortran-15` alias
- Kotlin 2.2.21-release-469
- Node.js 24.11.0
- Perl 5.40.2
- Python3 3.14.0
- Ruby 3.4.7
### Package Management
- Bundler 2.7.2
- Carthage 0.40.0
- CocoaPods 1.16.2
- Homebrew 4.6.19
- NPM 11.6.1
- Pip3 25.3 (python 3.14)
- Pipx 1.8.0
- RubyGems 3.7.2
- Vcpkg 2025 (build from commit e3ed41868d)
- Yarn 1.22.22
### Project Management
- Apache Ant 1.10.15
- Apache Maven 3.9.11
- Gradle 9.2.0
### Utilities
- 7-Zip 17.05
- aria2 1.37.0
- azcopy 10.31.0
- bazel 8.4.2
- bazelisk 1.27.0
- bsdtar 3.5.3 - available by 'tar' alias
- Curl 8.7.1
- Git 2.50.1
- Git LFS 3.7.1
- GitHub CLI 2.82.1
- GNU Tar 1.35 - available by 'gtar' alias
- GNU Wget 1.25.0
- gpg (GnuPG) 2.4.8
- jq 1.8.1
- OpenSSL 3.6.0 1 Oct 2025 (Library: OpenSSL 3.6.0 1 Oct 2025)
- Packer 1.14.2
- pkgconf 2.5.1
- Unxip 3.2
- yq 4.48.1
- zstd 1.5.7
- Ninja 1.13.1
### Tools
- AWS CLI 2.31.27
- AWS SAM CLI 1.145.2
- AWS Session Manager CLI 1.2.707.0
- Azure CLI 2.78.0
- Azure CLI (azure-devops) 1.0.2
- Bicep CLI 0.38.33
- Cmake 4.1.2
- CodeQL Action Bundle 2.23.3
- Fastlane 2.228.0
- SwiftFormat 0.58.5
- Xcbeautify 3.1.0
- Xcode Command Line Tools 26.0.0.0.1.1757719676
- Xcodes 1.6.2
### Browsers
- Safari 26.0.1 (21622.1.22.11.15)
- SafariDriver 26.0.1 (21622.1.22.11.15)
- Google Chrome 142.0.7444.60
- Google Chrome for Testing 142.0.7444.59
- ChromeDriver 142.0.7444.59
- Microsoft Edge 142.0.3595.53
- Microsoft Edge WebDriver 142.0.3595.53
- Mozilla Firefox 144.0.2
- geckodriver 0.36.0
- Selenium server 4.38.0
#### Environment variables
| Name | Value |
| --------------- | --------------------------------------- |
| CHROMEWEBDRIVER | /usr/local/share/chromedriver-mac-arm64 |
| EDGEWEBDRIVER | /usr/local/share/edge_driver |
| GECKOWEBDRIVER | /opt/homebrew/opt/geckodriver/bin |
### Java
| Version | Environment Variable |
| --------------------- | -------------------- |
| 11.0.29+7 | JAVA_HOME_11_arm64 |
| 17.0.17+10 | JAVA_HOME_17_arm64 |
| 21.0.9+10.0 (default) | JAVA_HOME_21_arm64 |
| 25.0.1+8.0 | JAVA_HOME_25_arm64 |
### Cached Tools
#### Ruby
- 3.2.9
- 3.3.10
- 3.4.7
#### Python
- 3.11.9
- 3.12.10
- 3.13.9
- 3.14.0
#### Node.js
- 20.19.5
- 22.21.1
- 24.11.0
#### Go
- 1.23.12
- 1.24.9
- 1.25.3
### Rust Tools
- Cargo 1.91.0
- Rust 1.91.0
- Rustdoc 1.91.0
- Rustup 1.28.2
#### Packages
- Clippy 0.1.91
- Rustfmt 1.8.0-stable
### PowerShell Tools
- PowerShell 7.4.13
#### PowerShell Modules
- Az: 14.3.0
- Pester: 5.7.1
- PSScriptAnalyzer: 1.24.0
### Xcode
| Version | Build | Path | Symlinks |
| ---------------- | ------ | ---------------------------------------------- | -------------------------------------------------------------- |
| 26.1 | 17B54 | /Applications/Xcode_26.1_Release_Candidate.app | /Applications/Xcode_26.1.0.app<br>/Applications/Xcode_26.1.app |
| 26.0.1 (default) | 17A400 | /Applications/Xcode_26.0.1.app | /Applications/Xcode_26.0.app<br>/Applications/Xcode.app |
| 16.4 | 16F6 | /Applications/Xcode_16.4.app | /Applications/Xcode_16.4.0.app |
#### Installed SDKs
| SDK | SDK Name | Xcode Version |
| ------------------------- | -------------------- | ------------- |
| macOS 15.5 | macosx15.5 | 16.4 |
| macOS 26.0 | macosx26.0 | 26.0.1 |
| macOS 26.1 | macosx26.1 | 26.1 |
| iOS 18.5 | iphoneos18.5 | 16.4 |
| iOS 26.0 | iphoneos26.0 | 26.0.1 |
| iOS 26.1 | iphoneos26.1 | 26.1 |
| Simulator - iOS 18.5 | iphonesimulator18.5 | 16.4 |
| Simulator - iOS 26.0 | iphonesimulator26.0 | 26.0.1 |
| Simulator - iOS 26.1 | iphonesimulator26.1 | 26.1 |
| tvOS 18.5 | appletvos18.5 | 16.4 |
| tvOS 26.0 | appletvos26.0 | 26.0.1 |
| tvOS 26.1 | appletvos26.1 | 26.1 |
| Simulator - tvOS 18.5 | appletvsimulator18.5 | 16.4 |
| Simulator - tvOS 26.0 | appletvsimulator26.0 | 26.0.1 |
| Simulator - tvOS 26.1 | appletvsimulator26.1 | 26.1 |
| watchOS 11.5 | watchos11.5 | 16.4 |
| watchOS 26.0 | watchos26.0 | 26.0.1 |
| watchOS 26.1 | watchos26.1 | 26.1 |
| Simulator - watchOS 11.5 | watchsimulator11.5 | 16.4 |
| Simulator - watchOS 26.0 | watchsimulator26.0 | 26.0.1 |
| Simulator - watchOS 26.1 | watchsimulator26.1 | 26.1 |
| visionOS 2.5 | xros2.5 | 16.4 |
| visionOS 26.0 | xros26.0 | 26.0.1 |
| visionOS 26.1 | xros26.1 | 26.1 |
| Simulator - visionOS 2.5 | xrsimulator2.5 | 16.4 |
| Simulator - visionOS 26.0 | xrsimulator26.0 | 26.0.1 |
| Simulator - visionOS 26.1 | xrsimulator26.1 | 26.1 |
| DriverKit 24.5 | driverkit24.5 | 16.4 |
| DriverKit 25.0 | driverkit25.0 | 26.0.1 |
| DriverKit 25.1 | driverkit25.1 | 26.1 |
#### Installed Simulators
| Name | OS | Simulators |
| ------------- | ------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| iOS 18.5 | 18.5 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone 16e<br>iPad (A16)<br>iPad Air 11-inch (M3)<br>iPad Air 13-inch (M3)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
| iOS 18.6 | 18.6 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone 16e<br>iPad (A16)<br>iPad Air 11-inch (M3)<br>iPad Air 13-inch (M3)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
| iOS 26.0 | 26.0.1 | iPhone 16e<br>iPhone 17<br>iPhone 17 Pro<br>iPhone 17 Pro Max<br>iPhone Air<br>iPad (A16)<br>iPad Air 11-inch (M3)<br>iPad Air 13-inch (M3)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 11-inch (M5)<br>iPad Pro 13-inch (M4)<br>iPad Pro 13-inch (M5) |
| iOS 26.1 | 26.1 | iPhone 16e<br>iPhone 17<br>iPhone 17 Pro<br>iPhone 17 Pro Max<br>iPhone Air<br>iPad (A16)<br>iPad Air 11-inch (M3)<br>iPad Air 13-inch (M3)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M5)<br>iPad Pro 13-inch (M5) |
| tvOS 18.5 | 18.5 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 26.0 | 26.0 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| tvOS 26.1 | 26.1 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
| watchOS 11.5 | 11.5 | 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 26.0 | 26.0 | Apple Watch SE 3 (40mm)<br>Apple Watch SE 3 (44mm)<br>Apple Watch Series 11 (42mm)<br>Apple Watch Series 11 (46mm)<br>Apple Watch Ultra 3 (49mm) |
| watchOS 26.1 | 26.1 | Apple Watch SE 3 (40mm)<br>Apple Watch SE 3 (44mm)<br>Apple Watch Series 11 (42mm)<br>Apple Watch Series 11 (46mm)<br>Apple Watch Ultra 3 (49mm) |
| visionOS 2.5 | 2.5 | Apple Vision Pro |
| visionOS 26.0 | 26.0 | Apple Vision Pro |
| visionOS 26.1 | 26.1 | Apple Vision Pro |
### Android
| Package Name | Version |
| -------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Android Command Line Tools | 16.0 |
| Android Emulator | 36.2.12 |
| 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.0 |
| Android Support Repository | 47.0.0 |
| CMake | 3.31.5 |
| Google Play services | 49 |
| Google Repository | 58 |
| NDK | 27.3.13750724 (default)<br>28.2.13676358 |
#### Environment variables
| Name | Value |
| ----------------------- | --------------------------------------------------- |
| ANDROID_HOME | /Users/runner/Library/Android/sdk |
| ANDROID_NDK | /Users/runner/Library/Android/sdk/ndk/27.3.13750724 |
| ANDROID_NDK_HOME | /Users/runner/Library/Android/sdk/ndk/27.3.13750724 |
| ANDROID_NDK_LATEST_HOME | /Users/runner/Library/Android/sdk/ndk/28.2.13676358 |
| ANDROID_NDK_ROOT | /Users/runner/Library/Android/sdk/ndk/27.3.13750724 |
| ANDROID_SDK_ROOT | /Users/runner/Library/Android/sdk |
@@ -8,11 +8,10 @@ Import-Module "~/image-generation/helpers/Common.Helpers.psm1"
Import-Module "~/image-generation/helpers/Xcode.Helpers.psm1"
$arch = Get-Architecture
$xcodeVersions = (Get-ToolsetContent).xcode.${arch}.versions
$defaultXcode = (Get-ToolsetContent).xcode.default
# Switch to each Xcode version
foreach ($xcodeVersion in $xcodeVersions.link) {
Write-Host "Switching to Xcode $xcodeVersion"
write-host "Switching to Xcode $xcodeVersion"
Switch-Xcode -Version $XcodeVersion
# Make object of all simulators
@@ -51,8 +50,8 @@ foreach ($xcodeVersion in $xcodeVersions.link) {
Write-Host "$($sameRuntimeDevices[$i+1].DeviceName) - DeviceId $($sameRuntimeDevices[$i+1].DeviceId)"
Write-Host "-------------------------------------------------------------------"
if ($sameRuntimeDevices[$i].DeviceName -eq $sameRuntimeDevices[$i+1].DeviceName) {
Write-Host "*******************************************************************"
Write-Host "** Duplicate found"
write-host "*******************************************************************"
write-host "** Duplicate found"
if ($sameRuntimeDevices[$i].DeviceCreationTime -lt $sameRuntimeDevices[$i+1].DeviceCreationTime) {
Write-Host "** will be removed $($sameRuntimeDevices[$i+1].DeviceName) with id $($sameRuntimeDevices[$i+1].DeviceId)"
xcrun simctl delete $sameRuntimeDevices[$i+1].DeviceId
@@ -62,12 +61,8 @@ foreach ($xcodeVersion in $xcodeVersions.link) {
xcrun simctl delete $sameRuntimeDevices[$i].DeviceId
$sameRuntimeDevices.RemoveAt($i)
}
Write-Host "*******************************************************************"
write-host "*******************************************************************"
}
}
}
}
# Restore default Xcode
Write-Host "Restoring default Xcode to $defaultXcode"
Switch-Xcode -Version $defaultXcode
@@ -54,13 +54,4 @@ foreach ($tool in $tools) {
}
}
# Ensure python3 and pip3 point to the latest installed Python version
# Fix for ./setup.sh script behavior for python3 and pip3 symlinks
# Only Intel images are affected since /usr/local/bin is used for Intel
# ARM images use /opt/homebrew/bin which is managed by Homebrew
Write-Host "Ensuring python3 and pip3 point to the latest installed Python version from Homebrew"
brew unlink python@3.14 && brew link python@3.14 --force --overwrite
Split-Path (readlink (which python3))
Invoke-PesterTests "Toolcache"
+2 -11
View File
@@ -8,10 +8,9 @@ $ErrorActionPreference = "Stop"
Import-Module "$env:HOME/image-generation/helpers/Common.Helpers.psm1"
Import-Module "$env:HOME/image-generation/helpers/Xcode.Installer.psm1" -DisableNameChecking
$os = Get-OSVersion
$arch = Get-Architecture
[Array]$xcodeVersions = (Get-ToolsetContent).xcode.$arch.versions
Write-Host $xcodeVersions
write-host $xcodeVersions
$defaultXcode = (Get-ToolsetContent).xcode.default
[Array]::Reverse($xcodeVersions)
$threadCount = "5"
@@ -34,15 +33,7 @@ Write-Host "Configuring Xcode versions..."
$xcodeVersions | ForEach-Object {
Write-Host "Configuring Xcode $($_.link) ..."
Invoke-XcodeRunFirstLaunch -Version $_.link
Install-XcodeAdditionalSimulatorRuntimes -Version $_.link -Arch $arch -Runtimes $_.install_runtimes
if (($_.link -match '^(\d+)\.(\d+)$') -and ([int]$matches[1] -ge 26)) {
Install-XcodeAdditionalComponents -Version $_.link
}
}
# Update dyld shared cache for the latest stable Xcode version
if ((-not $os.IsSonoma)) {
Update-DyldCache -XcodeVersions $xcodeVersions
Install-AdditionalSimulatorRuntimes -Version $_.link -Arch $arch -Runtimes $_.install_runtimes
}
Invoke-XcodeRunFirstLaunch -Version $defaultXcode
@@ -40,12 +40,6 @@ if is_SonomaX64 || is_VenturaX64 || is_SequoiaX64; then
brew uninstall parallels
fi
# Simple warmup of the default Xcode
echo "Warm up the default Xcode"
xcodebuild -version > /dev/null
xcrun simctl list > /dev/null
xcrun simctl list devices > /dev/null
echo "Put documentation to $HOME root"
cp $HOME/image-generation/output/software-report/systeminfo.* $HOME/
@@ -8,6 +8,7 @@ source ~/utils/utils.sh
# /Library/Application\ Support/com.apple.TCC/TCC.db
systemValuesArray=(
# Allow Full Disk Access for "Microsoft Defender for macOS" to bypass installation on-flight
"'kTCCServiceAccessibility','/bin/bash',1,2,0,1,NULL,NULL,NULL,'UNUSED',NULL,0,1583997993"
"'kTCCServiceAccessibility','/opt/hca/hosted-compute-agent',1,2,4,1,NULL,NULL,0,'UNUSED',NULL,NULL,1592919552"
"'kTCCServiceAccessibility','/opt/hca/start_hca.sh',1,2,0,1,NULL,NULL,NULL,'UNUSED',NULL,0,1566321319"
@@ -25,8 +26,6 @@ systemValuesArray=(
"'kTCCServiceAppleEvents','/usr/bin/osascript',1,2,0,1,NULL,NULL,0,'com.apple.Safari',NULL,NULL,1755087312"
"'kTCCServiceAppleEvents','/bin/bash',1,2,0,1,NULL,NULL,0,'com.apple.Safari',NULL,NULL,1755087312"
"'kTCCServiceAppleEvents','/opt/hca/hosted-compute-agent',1,2,0,1,NULL,NULL,0,'com.apple.Safari',NULL,NULL,1755087312"
"'kTCCServiceBluetoothAlways','/opt/hca/hosted-compute-agent',1,2,4,1,NULL,NULL,NULL,'UNUSED',NULL,NULL,1736467200"
"'kTCCServiceBluetoothAlways','/usr/local/opt/runner/provisioner/provisioner',1,2,4,1,NULL,NULL,NULL,'UNUSED',NULL,NULL,1736467200"
"'kTCCServiceMicrophone','/opt/hca/hosted-compute-agent',1,2,4,1,NULL,NULL,NULL,'UNUSED',NULL,NULL,1736467200"
"'kTCCServiceMicrophone','/opt/hca/start_hca.sh',1,2,0,1,NULL,NULL,NULL,'UNUSED',NULL,NULL,1576661342"
"'kTCCServiceMicrophone','/usr/local/opt/runner/provisioner/provisioner',1,2,4,1,NULL,NULL,NULL,'UNUSED',NULL,NULL,1736467200"
@@ -37,6 +36,7 @@ systemValuesArray=(
"'kTCCServiceScreenCapture','/bin/bash',1,2,0,1,NULL,NULL,NULL,'UNUSED',NULL,0,1599831148"
"'kTCCServiceScreenCapture','/opt/hca/hosted-compute-agent',1,2,4,1,NULL,NULL,0,'UNUSED',NULL,0,1687786159"
"'kTCCServiceScreenCapture','/usr/local/opt/runner/provisioner/provisioner',1,2,4,1,NULL,NULL,0,'UNUSED',NULL,0,1687786159"
"'kTCCServiceScreenCapture','com.devexpress.testcafe-browser-tools',0,2,3,1,X'fade0c0000000068000000010000000700000007000000080000001443fa4ca5141baeda21aeca1f50894673b440d4690000000800000014f8afcf6e69791b283e55bd0b03e39e422745770e0000000800000014bf4fc1aed64c871a49fc6bc9dd3878ce5d4d17c6',NULL,0,'UNUSED',NULL,0,1687952810"
"'kTCCServiceSystemPolicyAllFiles','/bin/bash',1,2,0,1,NULL,NULL,NULL,'UNUSED',NULL,0,1583997993"
"'kTCCServiceSystemPolicyAllFiles','/opt/hca/start_hca.sh',1,2,0,1,NULL,NULL,NULL,'UNUSED',NULL,0,1583997993"
"'kTCCServiceSystemPolicyAllFiles','/usr/libexec/sshd-keygen-wrapper',1,0,4,1,X'fade0c000000003c0000000100000006000000020000001d636f6d2e6170706c652e737368642d6b657967656e2d7772617070657200000000000003',NULL,0,'UNUSED',NULL,0,1639660695"
@@ -48,8 +48,8 @@ systemValuesArray=(
"'kTCCServiceSystemPolicyNetworkVolumes','com.apple.Terminal',0,2,4,1,X'fade0c000000003000000001000000060000000200000012636f6d2e6170706c652e5465726d696e616c000000000003',NULL,0,'UNUSED',NULL,0,1678990068"
)
for values in "${systemValuesArray[@]}"; do
if ! is_Ventura; then
# TCC access table in Sonoma and later has extra 4 columns: pid, pid_version, boot_uuid, last_reminded
if is_Sonoma || is_Sequoia; then
# TCC access table in Sonoma has extra 4 columns: pid, pid_version, boot_uuid, last_reminded
configure_system_tccdb "$values,NULL,NULL,'UNUSED',${values##*,}"
else
configure_system_tccdb "$values"
@@ -78,8 +78,6 @@ userValuesArray=(
"'kTCCServiceAppleEvents','/usr/local/opt/runner/provisioner/provisioner',1,2,3,1,NULL,NULL,0,'com.apple.systemevents',X'fade0c000000003400000001000000060000000200000016636f6d2e6170706c652e73797374656d6576656e7473000000000003',NULL,1592919552"
"'kTCCServiceAppleEvents','/usr/local/opt/runner/runprovisioner.sh',1,2,0,1,NULL,NULL,0,'com.apple.systemevents',NULL,NULL,1574241374"
"'kTCCServiceAppleEvents','com.apple.Terminal',0,2,0,1,X'fade0c000000003000000001000000060000000200000012636f6d2e6170706c652e5465726d696e616c000000000003',NULL,0,'com.apple.systemevents',X'fade0c000000003400000001000000060000000200000016636f6d2e6170706c652e73797374656d6576656e7473000000000003',NULL,1591180478"
"'kTCCServiceBluetoothAlways','/opt/hca/hosted-compute-agent',1,2,3,1,NULL,NULL,NULL,'UNUSED',NULL,NULL,1736467200"
"'kTCCServiceBluetoothAlways','/usr/local/opt/runner/provisioner/provisioner',1,2,3,1,NULL,NULL,NULL,'UNUSED',NULL,NULL,1736467200"
"'kTCCServiceMicrophone','/opt/hca/hosted-compute-agent',1,2,4,1,NULL,NULL,NULL,'UNUSED',NULL,NULL,1736467200"
"'kTCCServiceMicrophone','/opt/hca/start_hca.sh',1,2,0,1,NULL,NULL,NULL,'UNUSED',NULL,NULL,1576661342"
"'kTCCServiceMicrophone','/usr/local/opt/runner/provisioner/provisioner',1,2,4,1,NULL,NULL,NULL,'UNUSED',NULL,NULL,1736467200"
@@ -100,8 +98,8 @@ userValuesArray=(
"'kTCCServiceUbiquity','com.apple.mail',0,2,0,1,NULL,NULL,NULL,'UNUSED',NULL,NULL,1551941469"
)
for values in "${userValuesArray[@]}"; do
if ! is_Ventura; then
# TCC access table in Sonoma and later has extra 4 columns: pid, pid_version, boot_uuid, last_reminded
if is_Sonoma || is_Sequoia; then
# TCC access table in Sonoma has extra 4 columns: pid, pid_version, boot_uuid, last_reminded
configure_user_tccdb "$values,NULL,NULL,'UNUSED',${values##*,}"
else
configure_user_tccdb "$values"
@@ -12,9 +12,9 @@ add_filtered_installation_components() {
local tools_array=("$@")
for item in ${tools_array[@]}; do
# Take the last version number that appears after the last '-' or ';'
item_version=$(echo "$item" | grep -oE '[-;][0-9.]+' | grep -oE '[0-9.]+')
if [[ "$(printf "${minimum_version}\n${item_version}\n" | sort -V | head -n1)" == "$minimum_version" ]]; then
# take the last argument after splitting string by ';'' and '-''
version=$(echo "${item##*[-;]}")
if [[ "$(printf "${minimum_version}\n${version}\n" | sort -V | head -n1)" == "$minimum_version" ]]; then
components+=($item)
fi
done
@@ -15,9 +15,31 @@ for package in $common_packages; do
brew install hashicorp/tap/packer
;;
cmake)
# Pin cmake to 3.31.6 due to a backward compatibility issue
# https://github.com/actions/runner-images/issues/11926
cmake_commit="b4e46db74e74a8c1650b38b1da222284ce1ec5ce"
tap_name="local/pinned"
echo "Creating local tap (no git)..."
brew tap-new --no-git "$tap_name" >/dev/null
cmake_formula_dir="$(brew --repo "$tap_name")/Formula"
mkdir -p "$cmake_formula_dir"
cmake_rb_link="https://raw.githubusercontent.com/Homebrew/homebrew-core/$cmake_commit/Formula/c/cmake.rb"
cmake_rb_path="$cmake_formula_dir/cmake.rb"
echo "Downloading cmake.rb from $cmake_rb_link"
curl -fsSL "$cmake_rb_link" -o "$cmake_rb_path"
echo "Installing cmake 3.31.6 from custom tap..."
brew install "$tap_name/cmake"
;;
tcl-tk@8)
brew_smart_install "$package"
if is_VenturaX64 || is_SonomaX64 || is_SequoiaX64; then
if is_VenturaX64 || is_SonomaX64; then
# Fix for https://github.com/actions/runner-images/issues/11074
ln -sf "$(brew --prefix tcl-tk@8)/lib/libtcl8.6.dylib" /usr/local/lib/libtcl8.6.dylib
ln -sf "$(brew --prefix tcl-tk@8)/lib/libtk8.6.dylib" /usr/local/lib/libtk8.6.dylib
@@ -61,7 +83,6 @@ if is_SonomaX64 || is_VenturaX64 || is_SequoiaX64; then
if is_SonomaX64; then
osascript $HOME/utils/confirm-identified-developers-macos14.scpt $USER_PASSWORD
fi
if is_SequoiaX64; then
osascript $HOME/utils/confirm-identified-developers-macos15.scpt $USER_PASSWORD
fi
+1 -9
View File
@@ -7,15 +7,7 @@
source ~/utils/utils.sh
echo "Installing Git..."
#brew_smart_install "git"
# pin Git to 2.50.1 due to problems in the latest Git version 2.51.0
COMMIT=6b39030bc0d0a0a8df99afe37e5ae4d61ba07c88
FORMULA_URL="https://raw.githubusercontent.com/Homebrew/homebrew-core/$COMMIT/Formula/g/git.rb"
FORMULA_PATH="$(brew --repository)/Library/Taps/homebrew/homebrew-core/Formula/g/git.rb"
mkdir -p "$(dirname $FORMULA_PATH)"
curl -fsSL $FORMULA_URL -o $FORMULA_PATH
HOMEBREW_NO_AUTO_UPDATE=1 HOMEBREW_NO_INSTALL_FROM_API=1 brew install git
brew_smart_install "git"
git config --global --add safe.directory "*"
+2 -4
View File
@@ -11,11 +11,9 @@ echo "Installing Python Tooling"
# Close Finder window
close_finder_window
# Installing latest Homebrew Python 3 to handle python3 and pip3 symlinks
echo "Brew Installing default Python 3"
brew_smart_install "python3"
echo "Brew Installing Python 3"
brew_smart_install "[email protected]"
# Pipx has its own Python dependency
echo "Installing pipx"
if is_Arm64; then
+16 -16
View File
@@ -8,49 +8,49 @@ source ~/utils/utils.sh
arch=$(get_arch)
DEFAULT_RUBY_VERSION=$(get_toolset_value '.ruby.default')
RUBY_PATH=$AGENT_TOOLSDIRECTORY/Ruby
TOOLSET_VERSIONS=$(get_toolset_value '.toolcache[] | select(.name | contains("Ruby")) | .arch.'$arch'.versions[]')
echo "Installing Ruby..."
brew_smart_install "ruby@${DEFAULT_RUBY_VERSION}"
echo "Set Ruby ${DEFAULT_RUBY_VERSION} as default"
if [[ $arch == "arm64" ]]; then
export PATH=/opt/homebrew/opt/ruby@${DEFAULT_RUBY_VERSION}/bin:$PATH
ruby_suffix="macos-13-arm64"
else
export PATH=/usr/local/opt/ruby@${DEFAULT_RUBY_VERSION}/bin:$PATH
ruby_suffix="macos-latest"
fi
echo "Setting up gem environment"
GEM_PATH=$(gem env|awk '/EXECUTABLE DIRECTORY/ {print $4}')
echo "GEM_PATH=$GEM_PATH" >> $HOME/.bashrc
if [[ $arch == "arm64" ]]; then
echo 'export PATH="$GEM_PATH:/opt/homebrew/opt/ruby@'${DEFAULT_RUBY_VERSION}'/bin:$PATH"' >> $HOME/.bashrc
else
echo 'export PATH="$GEM_PATH:/usr/local/opt/ruby@'${DEFAULT_RUBY_VERSION}'/bin:$PATH"' >> $HOME/.bashrc
fi
echo "Check if Ruby hostedtoolcache folder exists"
echo "Install Ruby from toolset..."
[ -n "$API_PAT" ] && authString=(-H "Authorization: token ${API_PAT}")
PACKAGE_TAR_NAMES=$(curl "${authString[@]}" -fsSL "https://api.github.com/repos/ruby/ruby-builder/releases/latest" | jq -r '.assets[].name')
TOOLSET_VERSIONS=$(get_toolset_value '.toolcache[] | select(.name | contains("Ruby")) | .arch.'$arch'.versions[]')
RUBY_PATH=$AGENT_TOOLSDIRECTORY/Ruby
echo "Check if Ruby hostedtoolcache folder exists..."
if [[ ! -d $RUBY_PATH ]]; then
mkdir -p "$RUBY_PATH"
mkdir -p $RUBY_PATH
fi
echo "ruby path - $RUBY_PATH"
for toolset_version in ${TOOLSET_VERSIONS[@]}; do
echo "Installing Ruby version: $toolset_version..."
download_url=$(resolve_github_release_asset_url "ruby/ruby-builder" "contains(\"darwin-$arch.tar.gz\")" "ruby-$toolset_version" "$API_PAT")
package_tar_name="${download_url##*/}"
package_tar_name=$(echo "$PACKAGE_TAR_NAMES" | grep "^ruby-${toolset_version}-${ruby_suffix}.tar.gz$" | egrep -v "rc|preview" | sort -V | tail -1)
ruby_version=$(echo "$package_tar_name" | cut -d'-' -f 2)
ruby_version_path="$RUBY_PATH/$ruby_version"
echo "Create Ruby $ruby_version directory"
mkdir -p "$ruby_version_path"
echo "Create Ruby $ruby_version directory..."
mkdir -p $ruby_version_path
echo "Downloading tar archive $package_tar_name"
archive_path=$(download_with_retry "$download_url")
archive_path=$(download_with_retry "https://github.com/ruby/ruby-builder/releases/download/toolcache/${package_tar_name}")
echo "Expand $package_tar_name to the $ruby_version_path folder"
tar xf "$archive_path" -C "$ruby_version_path"
tar xf $archive_path -C $ruby_version_path
complete_file_path=$ruby_version_path/$arch.complete
if [[ ! -f $complete_file_path ]]; then
echo "Create complete file"
@@ -37,12 +37,12 @@ $languageAndRuntime.AddNodes($(Get-ClangLLVMVersions))
$languageAndRuntime.AddNodes($(Get-GccVersions))
$languageAndRuntime.AddNodes($(Get-FortranVersions))
$languageAndRuntime.AddToolVersion("Kotlin", $(Get-KotlinVersion))
if (($os.IsVentura -or $os.IsSonoma)) {
if ((-not $os.IsSequoia)) {
$languageAndRuntime.AddToolVersion("Mono", $(Get-MonoVersion))
}
$languageAndRuntime.AddToolVersion("Node.js", $(Get-NodeVersion))
$languageAndRuntime.AddToolVersion("Perl", $(Get-PerlVersion))
if ((-not $os.IsArm64)) {
if ((-not $os.IsVenturaArm64) -and (-not $os.IsSonomaArm64) -and (-not $os.IsSequoiaArm64)) {
$languageAndRuntime.AddToolVersion("PHP", $(Get-PHPVersion))
}
$languageAndRuntime.AddToolVersion("Python3", $(Get-Python3Version))
@@ -53,12 +53,12 @@ $packageManagement = $installedSoftware.AddHeader("Package Management")
$packageManagement.AddToolVersion("Bundler", $(Get-BundlerVersion))
$packageManagement.AddToolVersion("Carthage", $(Get-CarthageVersion))
$packageManagement.AddToolVersion("CocoaPods", $(Get-CocoaPodsVersion))
if ((-not $os.IsArm64)) {
if ((-not $os.IsVenturaArm64) -and (-not $os.IsSonomaArm64) -and (-not $os.IsSequoiaArm64)) {
$packageManagement.AddToolVersion("Composer", $(Get-ComposerVersion))
}
$packageManagement.AddToolVersion("Homebrew", $(Get-HomebrewVersion))
$packageManagement.AddToolVersion("NPM", $(Get-NPMVersion))
if (($os.IsVentura -or $os.IsSonoma)) {
if ((-not $os.IsSequoia)) {
$packageManagement.AddToolVersion("NuGet", $(Get-NuGetVersion))
}
$packageManagement.AddToolVersion("Pip3", $(Get-Pip3Version))
@@ -116,8 +116,8 @@ $tools.AddToolVersion("Xcode Command Line Tools", $(Get-XcodeCommandLineToolsVer
$tools.AddToolVersion("Xcodes", $(Get-XcodesVersion))
# Linters
if ((-not $os.IsArm64)) {
$linters = $installedSoftware.AddHeader("Linters")
$linters = $installedSoftware.AddHeader("Linters")
if ((-not $os.IsVenturaArm64) -and (-not $os.IsSonomaArm64) -and (-not $os.IsSequoiaArm64)) {
$linters.AddToolVersion("SwiftLint", $(Get-SwiftLintVersion))
}
@@ -174,12 +174,15 @@ $android.AddTable($androidTable)
$androidEnv = $android.AddHeader("Environment variables")
$androidEnv.AddTable($(Build-AndroidEnvironmentTable))
if ($os.IsSonoma -or $os.IsVentura -or $os.IsSequoia) {
if ($os.IsSonoma -or $os.IsVentura -or $os.IsSequoiaX64) {
$miscellaneous = $installedSoftware.AddHeader("Miscellaneous")
}
if ($os.IsSonoma -or $os.IsVentura) {
$miscellaneous.AddToolVersion("Tcl/Tk", $(Get-TclTkVersion))
}
if ((-not $os.IsArm64)) {
if ($os.IsSonomaX64 -or $os.IsVenturaX64 -or $os.IsSequoiaX64) {
Write-Host "Adding environment variables for parallels"
@@ -74,7 +74,7 @@ function Get-GeckodriverVersion {
function Get-SeleniumVersion {
$os = Get-OSVersion
if ($os.IsArm64) {
if ($os.IsVenturaArm64 -or $os.IsSonomaArm64 -or $os.IsSequoiaArm64) {
$cellarPath = "/opt/homebrew/Cellar"
} else {
$cellarPath = "/usr/local/Cellar"
@@ -2,7 +2,7 @@ function Get-JavaVersions {
$defaultJavaPath = (Get-Item env:JAVA_HOME).value
$os = Get-OSVersion
if ($os.IsArm64) {
if ($os.IsVenturaArm64 -or $os.IsSonomaArm64 -or $os.IsSequoiaArm64) {
$javaVersions = Get-Item env:JAVA_HOME_*_arm64
} else {
$javaVersions = Get-Item env:JAVA_HOME_*_X64
@@ -37,7 +37,7 @@ function Build-ToolcacheSection {
$nodes = @()
if ($os.IsVenturaX64) {
if ((-not $os.IsVenturaArm64) -and (-not $os.IsSonoma) -and (-not $os.IsSequoia)) {
$nodes += @(
[ToolVersionsListNode]::new("PyPy", $(Get-ToolcachePyPyVersions), '^\d+\.\d+', "List")
)
@@ -225,18 +225,17 @@ function Build-XcodeSimulatorsTable {
}
}
return [PSCustomObject] @{
"Name" = $runtime.name
"OS" = $runtime.version
"OS" = $runtime.name
"Simulators" = [String]::Join("<br>", $sortedRuntimeDevices)
}
} | Sort-Object {
# Sort rule 1
$sdkNameParts = $_."Name".Split(" ")
$sdkNameParts = $_."OS".Split(" ")
$platformName = [String]::Join(" ", $sdkNameParts[0..($sdkNameParts.Length - 2)])
return Get-XcodePlatformOrder $platformName
}, {
# Sort rule 2
$sdkNameParts = $_."Name".Split(" ")
$sdkNameParts = $_."OS".Split(" ")
return [System.Version]::Parse($sdkNameParts[-1])
}
}
@@ -35,10 +35,9 @@ function Get-OSVersion {
IsSonoma = $($osVersion.Version.Major -eq "14")
IsSonomaArm64 = $($osVersion.Version.Major -eq "14" -and $processorArchitecture -eq "arm64")
IsSonomaX64 = $($osVersion.Version.Major -eq "14" -and $processorArchitecture -ne "arm64")
IsSequoia = $($osVersion.Version.Major -eq "15")
IsSequoiaArm64 = $($osVersion.Version.Major -eq "15" -and $processorArchitecture -eq "arm64")
IsSequoiaX64 = $($osVersion.Version.Major -eq "15" -and $processorArchitecture -ne "arm64")
IsTahoe = $($osVersion.Version.Major -eq "26")
IsSequoia = $($osVersion.Version.Major -eq "15")
IsSequoiaArm64 = $($osVersion.Version.Major -eq "15" -and $processorArchitecture -eq "arm64")
IsSequoiaX64 = $($osVersion.Version.Major -eq "15" -and $processorArchitecture -ne "arm64")
}
}
@@ -42,6 +42,46 @@ function Invoke-DownloadXcodeArchive {
return $tempXipDirectory
}
function Resolve-ExactXcodeVersion {
param (
[Parameter(Mandatory)]
[string] $Version
)
# if toolset string contains spaces, consider it as a full name of Xcode
if ($Version -match "\s") {
return $Version
}
$semverVersion = [SemVer]::Parse($Version)
$availableVersions = Get-AvailableXcodeVersions
$satisfiedVersions = $availableVersions | Where-Object { $semverVersion -eq $_.stableSemver }
return $satisfiedVersions | Select-Object -Last 1 -ExpandProperty rawVersion
}
function Get-AvailableXcodeVersions {
$rawVersionsList = Invoke-XCVersion -Arguments "list" | ForEach-Object { $_.Trim() } | Where-Object { $_ -match "^\d" }
$availableVersions = $rawVersionsList | ForEach-Object {
$partStable,$partMajor = $_.Split(" ", 2)
$semver = $stableSemver = [SemVer]::Parse($partStable)
if ($partMajor) {
# Convert 'beta 3' -> 'beta.3', 'Release Candidate' -> 'releasecandidate', 'GM Seed 2' -> 'gmseed.2'
$normalizedLabel = $partMajor.toLower() -replace " (\d)", '.$1' -replace " ([a-z])", '$1'
$semver = [SemVer]::new($stableSemver.Major, $stableSemver.Minor, $stableSemver.Patch, $normalizedLabel)
}
return [PSCustomObject]@{
semver = $semver
rawVersion = $_
stableSemver = $stableSemver
}
}
return $availableVersions | Sort-Object -Property semver
}
function Expand-XcodeXipArchive {
param (
[Parameter(Mandatory)]
@@ -105,16 +145,18 @@ function Approve-XcodeLicense {
}
}
function Install-XcodeAdditionalComponents {
function Install-XcodeAdditionalPackages {
param (
[Parameter(Mandatory)]
[string] $Version
)
Write-Host "Installing additional MetalToolchain component for Xcode $Version..."
Write-Host "Installing additional packages for Xcode $Version..."
$xcodeRootPath = Get-XcodeRootPath -Version $Version
$xcodeBuildPath = Get-XcodeToolPath -XcodeRootPath $xcodeRootPath -ToolName "xcodebuild"
Invoke-ValidateCommand "$xcodeBuildPath -downloadComponent MetalToolchain" | Out-Null
$packages = Get-ChildItem -Path "$xcodeRootPath/Contents/Resources/Packages" -Filter "*.pkg" -File
$packages | ForEach-Object {
Invoke-ValidateCommand "sudo installer -pkg $($_.FullName) -target / -allowUntrusted"
}
}
function Invoke-XcodeRunFirstLaunch {
@@ -128,7 +170,7 @@ function Invoke-XcodeRunFirstLaunch {
Invoke-ValidateCommand "sudo $xcodeRootPath -runFirstLaunch"
}
function Install-XcodeAdditionalSimulatorRuntimes {
function Install-AdditionalSimulatorRuntimes {
param (
[Parameter(Mandatory)]
[string] $Version,
@@ -316,23 +358,3 @@ function Invoke-ValidateCommand {
Receive-Job -Job $job
}
}
function Update-DyldCache {
param (
[Parameter(Mandatory)]
[array] $XcodeVersions
)
# Find the latest stable Xcode version (excluding beta and RC versions)
$latestStableXcode = $XcodeVersions | Where-Object {
-not ($_.link.Contains("beta") -or $_.link.Contains("Release_Candidate") -or $_.link.Contains("_RC"))
} | Sort-Object { [version]($_.version -split '\+')[0] } -Descending | Select-Object -First 1
if ($latestStableXcode) {
Write-Host "Updating dyld shared cache for Xcode $($latestStableXcode.link)..."
Switch-Xcode -Version $latestStableXcode.link
Invoke-ValidateCommand "xcrun simctl runtime dyld_shared_cache update --all"
} else {
Write-Host "No stable Xcode version found for dyld cache update."
}
}
-4
View File
@@ -45,10 +45,6 @@ is_Arm64() {
[ "$(arch)" = "arm64" ]
}
is_Tahoe() {
[ "$OSTYPE" = "darwin25" ]
}
is_Sequoia() {
[ "$OSTYPE" = "darwin24" ]
}
@@ -56,7 +56,7 @@ Describe "Perl" {
}
}
Describe "Tcl/Tk" -Skip:(-not ($os.IsVenturaX64 -or $os.IsSonomaX64)) {
Describe "Tcl/Tk" -Skip:($os.IsVenturaArm64 -or $os.IsSonomaArm64 -or $os.IsSequoia) {
It "libtcl" {
Test-Path "/usr/local/lib/libtcl8.6.dylib" | Should -BeTrue
Test-Path "/usr/local/lib/libtk8.6.dylib" | Should -BeTrue
@@ -0,0 +1,23 @@
Import-Module "$PSScriptRoot/../helpers/Common.Helpers.psm1"
$os = Get-OSVersion
Describe "MongoDB" -Skip:($os.IsVentura -or $os.IsSonoma -or $os.IsSequoia) {
It "<ToolName>" -TestCases @(
@{ ToolName = "mongo" }
@{ ToolName = "mongod" }
) {
$toolsetVersion = (Get-ToolsetContent).mongodb.version
(&$ToolName --version)[2].Split('"')[-2] | Should -BeLike "$toolsetVersion*"
}
}
Describe "PostgreSQL" -Skip:($os.IsVentura -or $os.IsSonoma -or $os.IsSequoia) {
It "PostgreSQL version should correspond to the version in the toolset" {
$toolsetVersion = (Get-ToolsetContent).postgresql.version
# Client version
(psql --version).split()[-2] | Should -BeLike "$toolsetVersion*"
# Server version
(pg_config --version).split()[-2] | Should -BeLike "$toolsetVersion*"
}
}
+1 -1
View File
@@ -2,7 +2,7 @@ Import-Module "$PSScriptRoot/Helpers.psm1" -DisableNameChecking
$os = Get-OSVersion
Describe "SwiftLint" -Skip:($os.IsArm64) {
Describe "SwiftLint" -Skip:($os.IsVenturaArm64 -or $os.IsSonomaArm64 -or $os.IsSequoiaArm64) {
It "SwiftLint" {
"swiftlint version" | Should -ReturnZeroExitCode
}
+2 -18
View File
@@ -1,7 +1,5 @@
Import-Module "$PSScriptRoot/../helpers/Common.Helpers.psm1"
$os = Get-OSVersion
Describe "OpenSSL" {
Context "OpenSSL Version" {
It "OpenSSL is available" {
@@ -9,31 +7,17 @@ Describe "OpenSSL" {
}
}
Context "OpenSSL 1.1 Path Check" -Skip:($os.IsTahoe) {
Context "OpenSSL 1.1 Path Check" {
It "OpenSSL 1.1 path exists" {
$openSSLpath = brew --prefix openssl@1.1
$openSSLpath | Should -Exist
}
}
Context "OpenSSL 1.1 is default" -Skip:($os.IsTahoe) {
Context "OpenSSL 1.1 is default" {
It "Default OpenSSL version is 1.1" {
$commandResult = Get-CommandResult "openssl version"
$commandResult.Output | Should -Match "OpenSSL 1.1"
}
}
Context "OpenSSL 3 Path Check" -Skip:(-not $os.IsTahoe) {
It "OpenSSL 3 path exists" {
$openSSLpath = brew --prefix openssl@3
$openSSLpath | Should -Exist
}
}
Context "OpenSSL 3 is default" -Skip:(-not $os.IsTahoe) {
It "Default OpenSSL version is 3" {
$commandResult = Get-CommandResult "openssl version"
$commandResult.Output | Should -Match "OpenSSL 3"
}
}
}
+2 -2
View File
@@ -3,7 +3,7 @@ Import-Module "$PSScriptRoot/../helpers/Common.Helpers.psm1"
$os = Get-OSVersion
Describe "PHP" {
Context "PHP" -Skip:($os.IsArm64) {
Context "PHP" -Skip:($os.IsVenturaArm64 -or $os.IsSonomaArm64 -or $os.IsSequoiaArm64) {
It "PHP Path" {
Get-ToolPath "php" | Should -Not -BeLike "/usr/bin/php*"
}
@@ -14,7 +14,7 @@ Describe "PHP" {
}
}
Context "Composer" -Skip:($os.IsArm64) {
Context "Composer" -Skip:($os.IsVenturaArm64 -or $os.IsSonomaArm64 -or $os.IsSequoiaArm64) {
It "Composer" {
"composer --version" | Should -ReturnZeroExitCode
}
+16 -6
View File
@@ -8,13 +8,13 @@ Describe "Python3" {
"python3 --version" | Should -ReturnZeroExitCode
}
if ($os.IsArm64) {
if ($os.IsVenturaArm64 -or $os.IsSonomaArm64 -or $os.IsSequoiaArm64) {
It "Python 3 is installed under /opt/homebrew/bin/" {
Get-ToolPath "python3" | Should -BeLike "/opt/homebrew/bin/*"
}
} else {
It "Python 3 is installed under /usr/local/bin" {
Get-ToolPath "python3" | Should -BeLike "/usr/local/bin/*"
Get-ToolPath "python3" | Should -BeLike "/usr/local/bin*"
}
}
@@ -26,15 +26,25 @@ Describe "Python3" {
"pipx --version" | Should -ReturnZeroExitCode
}
It "Pip 3 and Python 3 came from the same path prefix" {
It "Pip 3 and Python 3 came from the same brew formula" {
$pip3Path = Split-Path (readlink (which pip3))
$python3Path = Split-Path (readlink (which python3))
$pip3Path | Should -BeExactly $python3Path
}
It "Pip 3 and Python 3 came from brew formula" {
Split-Path (readlink (which pip3)) | Should -BeLike "*/Cellar/*"
Split-Path (readlink (which python3)) | Should -BeLike "*/Cellar/*"
}
Describe "Python2" -Skip:($os.IsVentura -or $os.IsSonoma -or $os.IsSequoia) {
It "Python 2 is available" {
"/Library/Frameworks/Python.framework/Versions/2.7/bin/python --version" | Should -ReturnZeroExitCode
}
It "Pip 2 is available" {
"/Library/Frameworks/Python.framework/Versions/2.7/bin/pip --version" | Should -ReturnZeroExitCode
}
It "2to3 symlink does not point to Python 2" {
$2to3path = (Get-ChildItem (Get-Command 2to3).Path).Target
$2to3path | Should -Not -BeLike '/Frameworks/Python.framework/Versions/2.*'
}
}
@@ -25,3 +25,15 @@ Describe "Fastlane" {
"fastlane --version" | Should -ReturnZeroExitCode
}
}
Describe "xcpretty" -Skip:($os.IsVentura -or $os.IsSonoma -or $os.IsSequoia) {
It "xcpretty" {
"xcpretty --version" | Should -ReturnZeroExitCode
}
}
Describe "jazzy" -Skip:($os.IsVentura -or $os.IsSonoma -or $os.IsSequoia) {
It "jazzy" {
"jazzy --version" | Should -ReturnZeroExitCode
}
}
+17
View File
@@ -18,4 +18,21 @@ Describe "Rust" {
"cargo --version" | Should -ReturnZeroExitCode
}
}
Context "Cargo dependencies" -Skip:($os.IsVentura -or $os.IsSonoma -or $os.IsSequoia) {
It "bindgen" {
"bindgen --version" | Should -ReturnZeroExitCode
}
It "cbindgen" {
"cbindgen --version" | Should -ReturnZeroExitCode
}
It "Cargo audit" {
"cargo audit --version" | Should -ReturnZeroExitCode
}
It "Cargo outdated" {
"cargo outdated --version" | Should -ReturnZeroExitCode
}
}
}
+14 -3
View File
@@ -3,16 +3,17 @@ Import-Module "$PSScriptRoot/../helpers/Common.Helpers.psm1"
$os = Get-OSVersion
Describe "Disk free space" {
It "Image has more than 30GB free space" {
# we should have at least 30 GB of free space on macOS images
It "Image has more than 25GB free space" {
# we should have at least 25 GB of free space on macOS images
# 10GB here: https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/hosted?view=azure-devops#capabilities-and-limitations
# 14GB here: https://docs.github.com/en/actions/using-github-hosted-runners/using-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories
# 30GB due to: https://github.com/actions/runner-images/issues/10511
# 25GB is the current minimum due to the size of Xcode 16.4 and it's dependencies
$diskInfo = Get-PSDrive "/"
$totalSpaceGB = [math]::Floor(($diskInfo.Used + $diskInfo.Free) / 1GB)
$freeSpaceGB = [math]::Floor($diskInfo.Free / 1GB)
Write-Host " [i] Disk size: ${totalSpaceGB} GB; Free space: ${freeSpaceGB} GB"
$freeSpaceGB | Should -BeGreaterOrEqual 30
$freeSpaceGB | Should -BeGreaterOrEqual 25
}
}
@@ -30,6 +31,16 @@ Describe "Certificate" {
}
}
Describe "Audio device" -Skip:($os.IsVentura -or $os.IsSonoma -or $os.IsSequoia) {
It "Sox is installed" {
"sox --version" | Should -ReturnZeroExitCode
}
It "SwitchAudioSource is installed" {
"SwitchAudioSource -c" | Should -ReturnZeroExitCode
}
}
Describe "AutomationModeTool" {
It "Does not require user authentication" {
automationmodetool | Out-String | Should -Match "DOES NOT REQUIRE"
@@ -57,7 +57,7 @@ Describe "Toolcache" {
}
}
Context "Ruby" {
Context "Ruby" -Skip:($os.IsVenturaArm64 -or $os.IsSonomaArm64 -or $os.IsSequoiaArm64) {
$rubyDirectory = Join-Path $toolcacheDirectory "Ruby"
$rubyPackage = $packages | Where-Object { $_.ToolName -eq "Ruby" } | Select-Object -First 1
$testCase = @{ RubyDirectory = $rubyDirectory }
@@ -99,7 +99,7 @@ Describe "Toolcache" {
}
}
}
Context "PyPy" -Skip:(-not $os.IsVenturaX64) {
Context "PyPy" -Skip:($os.IsVenturaArm64 -or $os.IsSonoma -or $os.IsSequoia) {
$pypyDirectory = Join-Path $toolcacheDirectory "PyPy"
$pypyPackage = $packages | Where-Object { $_.ToolName -eq "pypy" } | Select-Object -First 1
$testCase = @{ PypyDirectory = $pypyDirectory }
@@ -1,292 +0,0 @@
packer {
required_plugins {
veertu-anka = {
version = ">= v3.2.0"
source = "github.com/veertuinc/veertu-anka"
}
}
}
locals {
image_folder = "/Users/${var.vm_username}/image-generation"
}
variable "builder_type" {
type = string
default = "veertu-anka-vm-clone"
validation {
condition = contains(["veertu-anka-vm-clone", "null"], var.builder_type)
error_message = "The builder_type value must be one of [veertu-anka-vm-clone, null]."
}
}
variable "source_vm_name" {
type = string
}
variable "source_vm_port" {
type = number
default = 22
}
variable "source_vm_tag" {
type = string
default = ""
}
variable "socks_proxy" {
type = string
default = ""
}
variable "build_id" {
type = string
}
variable "vm_username" {
type = string
sensitive = true
}
variable "vm_password" {
type = string
sensitive = true
}
variable "github_api_pat" {
type = string
sensitive = true
default = ""
}
variable "xcode_install_storage_url" {
type = string
sensitive = true
}
variable "xcode_install_sas" {
type = string
sensitive = true
}
variable "vcpu_count" {
type = string
default = "6"
}
variable "ram_size" {
type = string
default = "8G"
}
variable "image_os" {
type = string
default = "macos26"
}
source "veertu-anka-vm-clone" "template" {
vm_name = "${var.build_id}"
source_vm_name = "${var.source_vm_name}"
source_vm_tag = "${var.source_vm_tag}"
vcpu_count = "${var.vcpu_count}"
ram_size = "${var.ram_size}"
stop_vm = "true"
log_level = "debug"
}
source "null" "template" {
ssh_host = "${var.source_vm_name}"
ssh_port = "${var.source_vm_port}"
ssh_username = "${var.vm_username}"
ssh_password = "${var.vm_password}"
ssh_proxy_host = "${var.socks_proxy}"
}
build {
sources = ["source.${var.builder_type}.template"]
provisioner "shell" {
inline = ["mkdir ${local.image_folder}"]
}
provisioner "file" {
destination = "${local.image_folder}/"
sources = [
"${path.root}/../scripts/tests",
"${path.root}/../scripts/docs-gen",
"${path.root}/../scripts/helpers"
]
}
provisioner "file" {
destination = "${local.image_folder}/docs-gen/"
source = "${path.root}/../../../helpers/software-report-base"
}
provisioner "file" {
destination = "${local.image_folder}/add-certificate.swift"
source = "${path.root}/../assets/add-certificate.swift"
}
provisioner "file" {
destination = ".bashrc"
source = "${path.root}/../assets/bashrc"
}
provisioner "file" {
destination = ".bash_profile"
source = "${path.root}/../assets/bashprofile"
}
provisioner "shell" {
inline = ["mkdir ~/bootstrap"]
}
provisioner "file" {
destination = "bootstrap"
source = "${path.root}/../assets/bootstrap-provisioner/"
}
provisioner "file" {
destination = "${local.image_folder}/toolset.json"
source = "${path.root}/../toolsets/toolset-26.json"
}
provisioner "shell" {
execute_command = "sudo sh -c '{{ .Vars }} {{ .Path }}'"
inline = [
"mv ${local.image_folder}/docs-gen ${local.image_folder}/software-report",
"mkdir ~/utils",
"mv ${local.image_folder}/helpers/invoke-tests.sh ~/utils",
"mv ${local.image_folder}/helpers/utils.sh ~/utils"
]
}
provisioner "shell" {
execute_command = "chmod +x {{ .Path }}; source $HOME/.bash_profile; {{ .Vars }} {{ .Path }}"
scripts = [
"${path.root}/../scripts/build/install-xcode-clt.sh",
"${path.root}/../scripts/build/install-homebrew.sh",
"${path.root}/../scripts/build/install-rosetta.sh"
]
}
provisioner "shell" {
environment_vars = ["PASSWORD=${var.vm_password}", "USERNAME=${var.vm_username}"]
execute_command = "chmod +x {{ .Path }}; source $HOME/.bash_profile; sudo {{ .Vars }} {{ .Path }}"
scripts = [
"${path.root}/../scripts/build/configure-tccdb-macos.sh",
"${path.root}/../scripts/build/configure-autologin.sh",
"${path.root}/../scripts/build/configure-auto-updates.sh",
"${path.root}/../scripts/build/configure-ntpconf.sh",
"${path.root}/../scripts/build/configure-shell.sh"
]
}
provisioner "shell" {
environment_vars = ["IMAGE_VERSION=${var.build_id}", "IMAGE_OS=${var.image_os}", "PASSWORD=${var.vm_password}"]
execute_command = "chmod +x {{ .Path }}; source $HOME/.bash_profile; {{ .Vars }} {{ .Path }}"
scripts = [
"${path.root}/../scripts/build/configure-preimagedata.sh",
"${path.root}/../scripts/build/configure-ssh.sh",
"${path.root}/../scripts/build/configure-machine.sh"
]
}
provisioner "shell" {
execute_command = "source $HOME/.bash_profile; sudo {{ .Vars }} {{ .Path }}"
expect_disconnect = true
inline = ["echo 'Reboot VM'", "shutdown -r now"]
}
provisioner "shell" {
environment_vars = ["API_PAT=${var.github_api_pat}", "USER_PASSWORD=${var.vm_password}", "IMAGE_FOLDER=${local.image_folder}"]
execute_command = "chmod +x {{ .Path }}; source $HOME/.bash_profile; {{ .Vars }} {{ .Path }}"
pause_before = "30s"
scripts = [
"${path.root}/../scripts/build/configure-windows.sh",
"${path.root}/../scripts/build/install-powershell.sh",
"${path.root}/../scripts/build/install-dotnet.sh",
"${path.root}/../scripts/build/install-python.sh",
"${path.root}/../scripts/build/install-azcopy.sh",
"${path.root}/../scripts/build/install-ruby.sh",
"${path.root}/../scripts/build/install-rubygems.sh",
"${path.root}/../scripts/build/install-git.sh",
"${path.root}/../scripts/build/install-node.sh",
"${path.root}/../scripts/build/install-common-utils.sh"
]
}
provisioner "shell" {
environment_vars = ["XCODE_INSTALL_STORAGE_URL=${var.xcode_install_storage_url}", "XCODE_INSTALL_SAS=${var.xcode_install_sas}", "IMAGE_FOLDER=${local.image_folder}"]
execute_command = "chmod +x {{ .Path }}; source $HOME/.bash_profile; {{ .Vars }} pwsh -f {{ .Path }}"
script = "${path.root}/../scripts/build/Install-Xcode.ps1"
}
provisioner "shell" {
execute_command = "source $HOME/.bash_profile; sudo {{ .Vars }} {{ .Path }}"
expect_disconnect = true
inline = ["echo 'Reboot VM'", "shutdown -r now"]
}
provisioner "shell" {
environment_vars = ["API_PAT=${var.github_api_pat}", "IMAGE_FOLDER=${local.image_folder}"]
execute_command = "chmod +x {{ .Path }}; source $HOME/.bash_profile; {{ .Vars }} {{ .Path }}"
scripts = [
"${path.root}/../scripts/build/install-actions-cache.sh",
"${path.root}/../scripts/build/install-runner-package.sh",
"${path.root}/../scripts/build/install-llvm.sh",
"${path.root}/../scripts/build/install-openjdk.sh",
"${path.root}/../scripts/build/install-aws-tools.sh",
"${path.root}/../scripts/build/install-rust.sh",
"${path.root}/../scripts/build/install-gcc.sh",
"${path.root}/../scripts/build/install-cocoapods.sh",
"${path.root}/../scripts/build/install-android-sdk.sh",
"${path.root}/../scripts/build/install-vcpkg.sh",
"${path.root}/../scripts/build/install-safari.sh",
"${path.root}/../scripts/build/install-chrome.sh",
"${path.root}/../scripts/build/install-firefox.sh",
"${path.root}/../scripts/build/install-bicep.sh",
"${path.root}/../scripts/build/install-codeql-bundle.sh",
"${path.root}/../scripts/build/install-edge.sh"
]
}
provisioner "shell" {
environment_vars = ["IMAGE_FOLDER=${local.image_folder}"]
execute_command = "chmod +x {{ .Path }}; source $HOME/.bash_profile; {{ .Vars }} pwsh -f {{ .Path }}"
scripts = [
"${path.root}/../scripts/build/Install-Toolset.ps1",
"${path.root}/../scripts/build/Configure-Toolset.ps1"
]
}
provisioner "shell" {
environment_vars = ["IMAGE_FOLDER=${local.image_folder}"]
execute_command = "chmod +x {{ .Path }}; source $HOME/.bash_profile; {{ .Vars }} pwsh -f {{ .Path }}"
script = "${path.root}/../scripts/build/Configure-Xcode-Simulators.ps1"
}
provisioner "shell" {
environment_vars = ["IMAGE_FOLDER=${local.image_folder}"]
execute_command = "source $HOME/.bash_profile; {{ .Vars }} {{ .Path }}"
inline = [
"pwsh -File \"${local.image_folder}/software-report/Generate-SoftwareReport.ps1\" -OutputDirectory \"${local.image_folder}/output/software-report\" -ImageName ${var.build_id}",
"pwsh -File \"${local.image_folder}/tests/RunAll-Tests.ps1\""
]
}
provisioner "file" {
destination = "${path.root}/../../image-output/"
direction = "download"
source = "${local.image_folder}/output/"
}
provisioner "shell" {
execute_command = "chmod +x {{ .Path }}; source $HOME/.bash_profile; {{ .Vars }} {{ .Path }}"
scripts = [
"${path.root}/../scripts/build/configure-hostname.sh",
"${path.root}/../scripts/build/configure-system.sh"
]
}
}
+4 -8
View File
@@ -136,16 +136,14 @@
"3.10.*",
"3.11.*",
"3.12.*",
"3.13.*",
"3.14.*"
"3.13.*"
]
},
"arm64": {
"versions": [
"3.11.*",
"3.12.*",
"3.13.*",
"3.14.*"
"3.13.*"
]
}
}
@@ -196,8 +194,7 @@
"versions": [
"1.22.*",
"1.23.*",
"1.24.*",
"1.25.*"
"1.24.*"
]
},
"arm64": {
@@ -205,8 +202,7 @@
"versions": [
"1.22.*",
"1.23.*",
"1.24.*",
"1.25.*"
"1.24.*"
]
}
}
+15 -17
View File
@@ -122,11 +122,11 @@
"java": {
"x64": {
"default": "21",
"versions": [ "8", "11", "17", "21", "25" ]
"versions": [ "8", "11", "17", "21"]
},
"arm64": {
"default": "21",
"versions": [ "11", "17", "21", "25" ]
"versions": [ "11", "17", "21"]
}
},
"android": {
@@ -139,13 +139,12 @@
],
"addons": [],
"additional_tools": [
"cmake;3.31.5",
"cmake;4.1.2"
"cmake;3.31.5"
],
"ndk": {
"default": "26",
"versions": [
"26", "27", "28", "29"
"26", "27", "28"
]
}
},
@@ -193,6 +192,7 @@
},
"gcc": {
"versions": [
"12",
"13",
"14",
"15"
@@ -234,16 +234,14 @@
"3.10.*",
"3.11.*",
"3.12.*",
"3.13.*",
"3.14.*"
"3.13.*"
]
},
"arm64": {
"versions": [
"3.11.*",
"3.12.*",
"3.13.*",
"3.14.*"
"3.13.*"
]
}
}
@@ -255,16 +253,16 @@
"arch": {
"x64": {
"versions": [
"18.*",
"20.*",
"22.*",
"24.*"
"22.*"
]
},
"arm64": {
"versions": [
"18.*",
"20.*",
"22.*",
"24.*"
"22.*"
]
}
}
@@ -279,8 +277,7 @@
"versions": [
"1.22.*",
"1.23.*",
"1.24.*",
"1.25.*"
"1.24.*"
]
},
"arm64": {
@@ -288,8 +285,7 @@
"versions": [
"1.22.*",
"1.23.*",
"1.24.*",
"1.25.*"
"1.24.*"
]
}
}
@@ -299,6 +295,7 @@
"arch": {
"x64": {
"versions": [
"3.1.*",
"3.2.*",
"3.3.*",
"3.4.*"
@@ -306,6 +303,7 @@
},
"arm64": {
"versions": [
"3.1.*",
"3.2.*",
"3.3.*",
"3.4.*"
+25 -44
View File
@@ -4,20 +4,12 @@
"x64": {
"versions": [
{
"link": "26.1_Release_Candidate",
"filename": "26.1_Release_Candidate_Universal",
"version": "26.1_Release_Candidate_Universal+17B54",
"symlinks": ["26.1"],
"sha256": "6504F2527444D295585515C7E41A862FFD701E3255D6634A40A714C4895E6CCD",
"install_runtimes": "none"
},
{
"link": "26.0.1",
"filename": "26.0.1_Universal",
"version": "26.0.1+17A400",
"link": "26_beta_7",
"filename": "26_beta_7_Universal",
"version": "26.0.0-Beta.7+17A5305k",
"symlinks": ["26.0"],
"sha256": "9881c457068c86ac91e94cca2d7116dfd01cb7179c22b0863b63c7f3bb7e7695",
"install_runtimes": "default"
"sha256": "d711e1d6774647d38daac112ebb6d085af863ecc541f8de2360eaf44e638e8a6",
"install_runtimes": "none"
},
{
"link": "16.4",
@@ -64,20 +56,12 @@
"arm64":{
"versions": [
{
"link": "26.1_Release_Candidate",
"filename": "26.1_Release_Candidate_Universal",
"version": "26.1_Release_Candidate_Universal+17B54",
"symlinks": ["26.1"],
"sha256": "6504F2527444D295585515C7E41A862FFD701E3255D6634A40A714C4895E6CCD",
"install_runtimes": "none"
},
{
"link": "26.0.1",
"filename": "26.0.1_Universal",
"version": "26.0.1+17A400",
"link": "26_beta_7",
"filename": "26_beta_7_Universal",
"version": "26.0.0-Beta.7+17A5305k",
"symlinks": ["26.0"],
"sha256": "9881c457068c86ac91e94cca2d7116dfd01cb7179c22b0863b63c7f3bb7e7695",
"install_runtimes": "default"
"sha256": "d711e1d6774647d38daac112ebb6d085af863ecc541f8de2360eaf44e638e8a6",
"install_runtimes": "none"
},
{
"link": "16.4",
@@ -126,11 +110,11 @@
"java": {
"x64": {
"default": "21",
"versions": [ "11", "17", "21", "25" ]
"versions": [ "11", "17", "21"]
},
"arm64": {
"default": "21",
"versions": [ "11", "17", "21", "25" ]
"versions": [ "11", "17", "21"]
}
},
"android": {
@@ -143,13 +127,12 @@
],
"addons": [],
"additional_tools": [
"cmake;3.31.5",
"cmake;4.1.2"
"cmake;3.31.5"
],
"ndk": {
"default": "27",
"versions": [
"26", "27","28", "29"
"26", "27","28"
]
}
},
@@ -182,7 +165,6 @@
"perl",
"pkgconf",
"swiftformat",
"tcl-tk@8",
"zstd",
"ninja",
"gmp",
@@ -197,6 +179,7 @@
},
"gcc": {
"versions": [
"12",
"13",
"14",
"15"
@@ -238,16 +221,14 @@
"3.10.*",
"3.11.*",
"3.12.*",
"3.13.*",
"3.14.*"
"3.13.*"
]
},
"arm64": {
"versions": [
"3.11.*",
"3.12.*",
"3.13.*",
"3.14.*"
"3.13.*"
]
}
}
@@ -259,16 +240,16 @@
"arch": {
"x64": {
"versions": [
"18.*",
"20.*",
"22.*",
"24.*"
"22.*"
]
},
"arm64": {
"versions": [
"18.*",
"20.*",
"22.*",
"24.*"
"22.*"
]
}
}
@@ -283,8 +264,7 @@
"versions": [
"1.22.*",
"1.23.*",
"1.24.*",
"1.25.*"
"1.24.*"
]
},
"arm64": {
@@ -292,8 +272,7 @@
"versions": [
"1.22.*",
"1.23.*",
"1.24.*",
"1.25.*"
"1.24.*"
]
}
}
@@ -303,6 +282,7 @@
"arch": {
"x64": {
"versions": [
"3.1.*",
"3.2.*",
"3.3.*",
"3.4.*"
@@ -310,6 +290,7 @@
},
"arm64": {
"versions": [
"3.1.*",
"3.2.*",
"3.3.*",
"3.4.*"
-201
View File
@@ -1,201 +0,0 @@
{
"xcode": {
"default": "26.0.1",
"arm64":{
"versions": [
{
"link": "26.1_Release_Candidate",
"filename": "26.1_Release_Candidate_Universal",
"version": "26.1_Release_Candidate_Universal+17B54",
"symlinks": ["26.1"],
"sha256": "6504F2527444D295585515C7E41A862FFD701E3255D6634A40A714C4895E6CCD",
"install_runtimes": "default"
},
{
"link": "26.0.1",
"filename": "26.0.1_Universal",
"version": "26.0.1+17A400",
"symlinks": ["26.0"],
"sha256": "9881c457068c86ac91e94cca2d7116dfd01cb7179c22b0863b63c7f3bb7e7695",
"install_runtimes": "default"
},
{
"link": "16.4",
"filename": "16.4",
"version": "16.4.0+16F6",
"sha256": "2dbf65ba28fb85b34e72c14c529a42d5c3189ab0f11fb29fdebd5f4ee6c87900",
"install_runtimes": [
{ "iOS": ["18.5", "18.6"] },
{ "watchOS": ["11.5"] },
{ "tvOS": ["18.5"] },
{ "visionOS": ["2.5"] }
]
}
]
}
},
"java": {
"x64": {
"default": "21",
"versions": [ "11", "17", "21", "25" ]
},
"arm64": {
"default": "21",
"versions": [ "11", "17", "21", "25" ]
}
},
"android": {
"cmdline-tools": "commandlinetools-mac-12266719_latest.zip",
"sdk-tools": "sdk-tools-darwin-4333796.zip",
"platform_min_version": "35",
"build_tools_min_version": "35.0.0",
"extras": [
"android;m2repository", "google;m2repository", "google;google_play_services"
],
"addons": [],
"additional_tools": [
"cmake;3.31.5",
"cmake;4.1.2"
],
"ndk": {
"default": "27",
"versions": [
"27","28", "29"
]
}
},
"powershellModules": [
{
"name": "Az",
"versions": [
"14.3.0"
]
},
{ "name": "Pester" },
{ "name": "PSScriptAnalyzer" }
],
"brew": {
"common_packages": [
"ant",
"aria2",
"azure-cli",
"bazelisk",
"carthage",
"cmake",
"gh",
"gnupg",
"gnu-tar",
"kotlin",
"libpq",
"libsodium",
"openssl",
"p7zip",
"packer",
"perl",
"pkgconf",
"swiftformat",
"zstd",
"ninja",
"gmp",
"yq",
"unxip",
"xcbeautify",
"xcodes"
],
"cask_packages": [
"parallels"
]
},
"gcc": {
"versions": [
"13",
"14",
"15"
]
},
"dotnet": {
"arch":{
"arm64": {
"versions": [
"8.0",
"9.0"
]
}
}
},
"ruby": {
"default": "3.4",
"rubygems": [
"cocoapods",
"bundler",
"fastlane"
]
},
"toolcache": [
{
"name": "Python",
"url" : "https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json",
"platform" : "darwin",
"arch": {
"arm64": {
"versions": [
"3.11.*",
"3.12.*",
"3.13.*",
"3.14.*"
]
}
}
},
{
"name": "Node",
"url" : "https://raw.githubusercontent.com/actions/node-versions/main/versions-manifest.json",
"platform" : "darwin",
"arch": {
"arm64": {
"versions": [
"20.*",
"22.*",
"24.*"
]
}
}
},
{
"name": "Go",
"url" : "https://raw.githubusercontent.com/actions/go-versions/main/versions-manifest.json",
"platform" : "darwin",
"arch": {
"arm64": {
"variable_template" : "GOROOT_{0}_{1}_ARM64",
"versions": [
"1.23.*",
"1.24.*",
"1.25.*"
]
}
}
},
{
"name": "Ruby",
"arch": {
"arm64": {
"versions": [
"3.2.*",
"3.3.*",
"3.4.*"
]
}
}
}
],
"node": {
"default": "24"
},
"llvm": {
"version": "20"
},
"pwsh": {
"version": "7.4"
}
}
+112 -121
View File
@@ -1,13 +1,8 @@
| Announcements |
|-|
| [[Ubuntu] `man-db` automatic updates will be disabled on November 10th](https://github.com/actions/runner-images/issues/13213) |
| [[Ubuntu & Windows] Four tools scheduled for deprecation on November 3, 2025](https://github.com/actions/runner-images/issues/12898) |
***
# Ubuntu 22.04
- OS Version: 22.04.5 LTS
- Kernel Version: 6.8.0-1041-azure
- Image Version: 20251102.127.1
- Systemd version: 249.11-0ubuntu3.17
- Kernel Version: 6.8.0-1031-azure
- Image Version: 20250825.1.0
- Systemd version: 249.11-0ubuntu3.16
## Installed Software
@@ -19,28 +14,28 @@
- Dash 0.5.11+git20210903+057cd650a4ed-3build1
- GNU C++: 10.5.0, 11.4.0, 12.3.0
- GNU Fortran: 10.5.0, 11.4.0, 12.3.0
- Julia 1.12.1
- Kotlin 2.2.21-release-469
- Julia 1.11.6
- Kotlin 2.2.10-release-430
- Mono 6.12.0.200
- MSBuild 16.10.1.31701 (Mono 6.12.0.200)
- Node.js 20.19.5
- Node.js 20.19.4
- Perl 5.34.0
- Python 3.10.12
- Ruby 3.0.2p107
- Swift 6.2
- Swift 6.1.2
### Package Management
- cpan 1.64
- Helm 3.19.0
- Homebrew 4.6.19
- Miniconda 25.9.1
- Helm 3.18.6
- Homebrew 4.6.7
- Miniconda 25.7.0
- Npm 10.8.2
- NuGet 6.6.1.2
- Pip 22.0.2
- Pip3 22.0.2
- Pipx 1.8.0
- Pipx 1.7.1
- RubyGems 3.3.5
- Vcpkg (build from commit e3ed41868d)
- Vcpkg (build from commit 6ecbbbdf31)
- Yarn 1.22.22
#### Environment variables
@@ -59,85 +54,84 @@ to accomplish this.
### Project Management
- Ant 1.10.12
- Gradle 9.2.0
- Lerna 9.0.0
- Gradle 9.0.0
- Lerna 8.2.3
- Maven 3.9.11
- Sbt 1.11.7
- Sbt 1.11.5
### Tools
- Ansible 2.17.14
- Ansible 2.17.13
- apt-fast 1.10.0
- AzCopy 10.31.0 - available by `azcopy` and `azcopy10` aliases
- Bazel 8.4.2
- AzCopy 10.30.0 - available by `azcopy` and `azcopy10` aliases
- Bazel 8.3.1
- Bazelisk 1.26.0
- Bicep 0.38.33
- Bicep 0.37.4
- Buildah 1.23.1
- CMake 3.31.6
- CodeQL Action Bundle 2.23.3
- CodeQL Action Bundle 2.22.4
- Docker Amazon ECR Credential Helper 0.10.1
- Docker Compose v2 2.38.2
- Docker-Buildx 0.29.1
- Docker-Buildx 0.27.0
- Docker Client 28.0.4
- Docker Server 28.0.4
- Fastlane 2.228.0
- Git 2.51.2
- Git LFS 3.7.1
- Git 2.51.0
- Git LFS 3.7.0
- Git-ftp 1.6.0
- Haveged 1.9.14
- Heroku 10.15.0
- Heroku 10.12.0
- jq 1.6
- Kind 0.30.0
- Kubectl 1.34.1
- Kind 0.29.0
- Kubectl 1.33.4
- Kustomize 5.7.1
- Leiningen 2.12.0
- Leiningen 2.11.2
- MediaInfo 21.09
- Mercurial 6.1.1
- Minikube 1.37.0
- Minikube 1.36.0
- n 10.2.0
- Newman 6.2.1
- nvm 0.40.3
- OpenSSL 3.0.2-0ubuntu1.20
- Packer 1.14.2
- Parcel 2.16.0
- OpenSSL 3.0.2-0ubuntu1.19
- Packer 1.14.1
- Parcel 2.15.4
- Podman 3.4.4
- Pulumi 3.205.0
- R 4.5.2
- Pulumi 3.191.0
- R 4.5.1
- Skopeo 1.4.1
- Sphinx Open Source Search Server 2.2.11
- SVN 1.14.1
- Terraform 1.13.4
- Terraform 1.13.0
- yamllint 1.37.1
- yq 4.48.1
- yq 4.47.1
- zstd 1.5.7
- Ninja 1.13.1
### CLI Tools
- Alibaba Cloud CLI 3.1.0
- AWS CLI 2.31.27
- Alibaba Cloud CLI 3.0.298
- AWS CLI 2.28.17
- AWS CLI Session Manager Plugin 1.2.707.0
- AWS SAM CLI 1.145.2
- Azure CLI 2.78.0
- AWS SAM CLI 1.143.0
- Azure CLI 2.76.0
- Azure CLI (azure-devops) 1.0.2
- GitHub CLI 2.82.1
- Google Cloud CLI 545.0.0
- Netlify CLI 23.9.5
- OpenShift CLI 4.20.1
- ORAS CLI 1.3.0
- Vercel CLI 48.8.0
- GitHub CLI 2.78.0
- Google Cloud CLI 535.0.0
- Netlify CLI 23.3.1
- OpenShift CLI 4.19.9
- ORAS CLI 1.2.3
- Vercel CLI 46.0.2
### Java
| Version | Environment Variable |
| ------------------- | -------------------- |
| 8.0.472+8 | JAVA_HOME_8_X64 |
| 11.0.29+7 (default) | JAVA_HOME_11_X64 |
| 17.0.17+10 | JAVA_HOME_17_X64 |
| 21.0.9+10 | JAVA_HOME_21_X64 |
| 25.0.1+8 | JAVA_HOME_25_X64 |
| 8.0.462+8 | JAVA_HOME_8_X64 |
| 11.0.28+6 (default) | JAVA_HOME_11_X64 |
| 17.0.16+8 | JAVA_HOME_17_X64 |
| 21.0.8+9 | JAVA_HOME_21_X64 |
### PHP Tools
- PHP: 8.1.2
- Composer 2.8.12
- PHPUnit 8.5.48
- Composer 2.8.11
- PHPUnit 8.5.44
```
Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
```
@@ -149,27 +143,27 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
- Stack 3.7.1
### Rust Tools
- Cargo 1.91.0
- Rust 1.91.0
- Rustdoc 1.91.0
- Cargo 1.89.0
- Rust 1.89.0
- Rustdoc 1.89.0
- Rustup 1.28.2
#### Packages
- Bindgen 0.72.1
- Bindgen 0.72.0
- Cargo audit 0.21.2
- Cargo clippy 0.1.91
- Cargo clippy 0.1.89
- Cargo outdated 0.17.0
- Cbindgen 0.29.2
- Cbindgen 0.29.0
- Rustfmt 1.8.0
### Browsers and Drivers
- Google Chrome 142.0.7444.59
- ChromeDriver 142.0.7444.59
- Chromium 142.0.7444.0
- Microsoft Edge 142.0.3595.53
- Microsoft Edge WebDriver 142.0.3595.53
- Selenium server 4.38.0
- Mozilla Firefox 144.0.2
- Google Chrome 139.0.7258.138
- ChromeDriver 139.0.7258.138
- Chromium 139.0.7258.0
- Microsoft Edge 139.0.3405.119
- Microsoft Edge WebDriver 139.0.3405.111
- Selenium server 4.35.0
- Mozilla Firefox 142.0
- Geckodriver 0.36.0
#### Environment variables
@@ -181,8 +175,8 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
| SELENIUM_JAR_PATH | /usr/share/java/selenium-server.jar |
### .NET Tools
- .NET Core SDK: 8.0.121, 8.0.206, 8.0.318, 8.0.415, 9.0.111, 9.0.205, 9.0.306
- nbgv 3.8.118+69b3e0b5a0
- .NET Core SDK: 8.0.413, 9.0.203
- nbgv 3.7.115+d31f50f4d1
### Databases
- sqlite3 3.37.2
@@ -196,7 +190,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
```
#### MySQL
- MySQL 8.0.43-0ubuntu0.22.04.2
- MySQL 8.0.43-0ubuntu0.22.04.1
```
User: root
Password: root
@@ -206,28 +200,26 @@ Use the following command as a part of your job to start the service: 'sudo syst
#### MS SQL
- sqlcmd 17.10.0001.1
- SqlPackage 170.2.70.1
- SqlPackage 170.1.61.1
### Cached Tools
#### Go
- 1.22.12
- 1.23.12
- 1.24.9
- 1.25.3
- 1.24.6
#### Node.js
- 20.19.5
- 22.21.1
- 24.11.0
- 18.20.8
- 20.19.4
- 22.18.0
#### Python
- 3.9.24
- 3.10.19
- 3.11.14
- 3.12.12
- 3.13.9
- 3.14.0
- 3.9.23
- 3.10.18
- 3.11.13
- 3.12.11
- 3.13.7
#### PyPy
- 3.7.13 [PyPy 7.3.9]
@@ -237,17 +229,18 @@ Use the following command as a part of your job to start the service: 'sudo syst
- 3.11.13 [PyPy 7.3.20]
#### Ruby
- 3.1.7
- 3.2.9
- 3.3.10
- 3.4.7
- 3.3.9
- 3.4.5
### PowerShell Tools
- PowerShell 7.4.13
- PowerShell 7.4.11
#### PowerShell Modules
- Az: 12.5.0
- MarkdownPS: 1.10
- Microsoft.Graph: 2.32.0
- Microsoft.Graph: 2.30.0
- Pester: 5.7.1
- PSScriptAnalyzer: 1.24.0
@@ -258,17 +251,17 @@ Use the following command as a part of your job to start the service: 'sudo syst
| nginx | 1.18.0 | /etc/nginx/nginx.conf | inactive | 80 |
### Android
| Package Name | Version |
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 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<br>33.0.0 33.0.1 33.0.2 33.0.3<br>32.0.0<br>31.0.0 |
| Android SDK Platform-Tools | 36.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)<br>android-33-ext5 (rev 1)<br>android-33-ext4 (rev 1)<br>android-33 (rev 3)<br>android-32 (rev 1)<br>android-31 (rev 1) |
| Android Support Repository | 47.0.0 |
| CMake | 3.18.1<br>3.22.1<br>3.31.5 |
| Google Play services | 49 |
| Google Repository | 58 |
| NDK | 26.3.11579264<br>27.3.13750724 (default) |
| Package Name | Version |
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Android Command Line Tools | 9.0 |
| Android SDK Build-tools | 36.0.0<br>35.0.0 35.0.1<br>34.0.0<br>33.0.0 33.0.1 33.0.2 33.0.3<br>32.0.0<br>31.0.0 |
| Android SDK Platform-Tools | 36.0.0 |
| Android SDK Platforms | 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)<br>android-33-ext5 (rev 1)<br>android-33-ext4 (rev 1)<br>android-33 (rev 3)<br>android-32 (rev 1)<br>android-31 (rev 1) |
| Android Support Repository | 47.0.0 |
| CMake | 3.18.1<br>3.22.1<br>3.31.5 |
| Google Play services | 49 |
| Google Repository | 58 |
| NDK | 26.3.11579264<br>27.3.13750724 (default) |
#### Environment variables
| Name | Value |
@@ -286,18 +279,18 @@ Use the following command as a part of your job to start the service: 'sudo syst
| alpine:3.16 | sha256:452e7292acee0ee16c332324d7de05fa2c99f9994ecc9f0779c602916a672ae4 | 2024-01-27 |
| alpine:3.17 | sha256:8fc3dacfb6d69da8d44e42390de777e48577085db99aa4e4af35f483eb08b989 | 2024-09-06 |
| alpine:3.18 | sha256:de0eb0b3f2a47ba1eb89389859a9bd88b28e82f5826b6969ad604979713c2d4f | 2025-02-14 |
| alpine:3.19 | sha256:6baf43584bcb78f2e5847d1de515f23499913ac9f12bdf834811a3145eb11ca1 | 2025-10-08 |
| alpine:3.19 | sha256:3be987e6cde1d07e873c012bf6cfe941e6e85d16ca5fc5b8bedc675451d2de67 | 2025-07-15 |
| debian:10 | sha256:58ce6f1271ae1c8a2006ff7d3e54e9874d839f573d8009c20154ad0f2fb0a225 | 2024-06-13 |
| debian:11 | sha256:5e2b4654ea0dc0bc22434199dace15adf9799f292857679fa79f9395e6d4dafd | 2025-10-20 |
| moby/buildkit:latest | sha256:79cc6476ab1a3371c9afd8b44e7c55610057c43e18d9b39b68e2b0c2475cc1b6 | 2025-10-07 |
| debian:11 | sha256:8ec25a9073e8cc89a184a6256e219828196d75203375a8ad4f0977f3011f2115 | 2025-08-11 |
| moby/buildkit:latest | sha256:ddd1ca44b21eda906e81ab14a3d467fa6c39cd73b9a39df1196210edcb8db59e | 2025-07-01 |
| node:18 | sha256:c6ae79e38498325db67193d391e6ec1d224d96c693a8a4d943498556716d3783 | 2025-03-27 |
| node:18-alpine | sha256:8d6421d663b4c28fd3ebc498332f249011d118945588d0a35cb9bc4b8ca09d9e | 2025-03-27 |
| node:20 | sha256:c11ae157cdd9f8b522d5a65e7f3f5f5c34cf45a8bd883c15e8f2028a2673dec7 | 2025-10-16 |
| node:20-alpine | sha256:6178e78b972f79c335df281f4b7674a2d85071aae2af020ffa39f0a770265435 | 2025-10-16 |
| node:22 | sha256:22ab967fdf8d9ce32387d0c06ab2e32c6793d860bb93ccce6e27927ccdfeee6d | 2025-10-29 |
| node:22-alpine | sha256:b2358485e3e33bc3a33114d2b1bdb18cdbe4df01bd2b257198eb51beb1f026c5 | 2025-10-29 |
| node:20 | sha256:572a90df10a58ebb7d3f223d661d964a6c2383a9c2b5763162b4f631c53dc56a | 2025-07-15 |
| node:20-alpine | sha256:df02558528d3d3d0d621f112e232611aecfee7cbc654f6b375765f72bb262799 | 2025-07-15 |
| node:22 | sha256:3266bc9e8bee1acc8a77386eefaf574987d2729b8c5ec35b0dbd6ddbc40b0ce2 | 2025-08-01 |
| node:22-alpine | sha256:1b2479dd35a99687d6638f5976fd235e26c5b37e8122f786fcd5fe231d63de5b | 2025-08-01 |
| ubuntu:20.04 | sha256:8feb4d8ca5354def3d8fce243717141ce31e2c428701f6682bd2fafe15388214 | 2025-04-08 |
| ubuntu:22.04 | sha256:09506232a8004baa32c47d68f1e5c307d648fdd59f5e7eaa42aaf87914100db3 | 2025-10-01 |
| ubuntu:22.04 | sha256:1aa979d85661c488ce030ac292876cf6ed04535d3a237e49f61542d8e5de5ae0 | 2025-07-30 |
### Installed apt packages
| Name | Version |
@@ -306,16 +299,16 @@ Use the following command as a part of your job to start the service: 'sudo syst
| aria2 | 1.36.0-1 |
| autoconf | 2.71-2 |
| automake | 1:1.16.5-1.3 |
| binutils | 2.38-4ubuntu2.10 |
| binutils | 2.38-4ubuntu2.8 |
| bison | 2:3.8.2+dfsg-1build1 |
| 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.20 |
| dbus | 1.12.20-2ubuntu4.1 |
| dnsutils | 1:9.18.39-0ubuntu0.22.04.2 |
| dpkg | 1.21.1ubuntu2.6 |
| dpkg-dev | 1.21.1ubuntu2.6 |
| dnsutils | 1:9.18.30-0ubuntu0.22.04.2 |
| dpkg | 1.21.1ubuntu2.3 |
| dpkg-dev | 1.21.1ubuntu2.3 |
| fakeroot | 1.28-1ubuntu1 |
| file | 1:5.41-3ubuntu0.1 |
| findutils | 4.8.0-1ubuntu3 |
@@ -333,8 +326,8 @@ Use the following command as a part of your job to start the service: 'sudo syst
| lib32z1 | 1:1.2.11.dfsg-2ubuntu9.2 |
| libc++-dev | 1:14.0-55\~exp2 |
| libc++abi-dev | 1:14.0-55\~exp2 |
| libc6-dev | 2.35-0ubuntu3.11 |
| libcurl4 | 7.81.0-1ubuntu1.21 |
| libc6-dev | 2.35-0ubuntu3.10 |
| libcurl4 | 7.81.0-1ubuntu1.20 |
| libgbm-dev | 23.2.1-1ubuntu3.1\~22.04.3 |
| libgconf-2-4 | 3.2.6-7ubuntu2 |
| libgsl-dev | 2.7.1+dfsg-3 |
@@ -342,16 +335,15 @@ 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 |
| libsecret-1-dev | 0.20.5-2 |
| libsqlite3-dev | 3.37.2-2ubuntu0.5 |
| libssl-dev | 3.0.2-0ubuntu1.20 |
| libssl-dev | 3.0.2-0ubuntu1.19 |
| libtool | 2.4.6-15build2 |
| libunwind8 | 1.3.2-2build2.1 |
| libxkbfile-dev | 1:1.1.0-1build3 |
| libxss1 | 1:1.2.3-1build2 |
| libyaml-dev | 0.2.2-1build2 |
| locales | 2.35-0ubuntu3.11 |
| locales | 2.35-0ubuntu3.10 |
| lz4 | 1.9.3-2build2 |
| m4 | 1.4.18-5ubuntu2 |
| make | 4.3-4.1build1 |
@@ -379,7 +371,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
| subversion | 1.14.1-3ubuntu0.22.04.1 |
| sudo | 1.9.9-1ubuntu2.5 |
| swig | 4.0.2-1ubuntu1 |
| systemd-coredump | 249.11-0ubuntu3.17 |
| systemd-coredump | 249.11-0ubuntu3.16 |
| tar | 1.34+dfsg-1ubuntu0.1.22.04.2 |
| telnet | 0.17-44build1 |
| texinfo | 6.8-4build1 |
@@ -390,8 +382,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
| upx | 3.96-3 |
| wget | 1.21.2-2ubuntu1.1 |
| xorriso | 1.5.4-2 |
| xvfb | 2:21.1.4-2ubuntu1.7\~22.04.16 |
| xvfb | 2:21.1.4-2ubuntu1.7\~22.04.15 |
| xz-utils | 5.2.5-2ubuntu1 |
| zip | 3.0-12build2 |
| zsync | 0.6.2-3ubuntu1 |
+94 -104
View File
@@ -1,13 +1,8 @@
| Announcements |
|-|
| [[Ubuntu] `man-db` automatic updates will be disabled on November 10th](https://github.com/actions/runner-images/issues/13213) |
| [[Ubuntu & Windows] Four tools scheduled for deprecation on November 3, 2025](https://github.com/actions/runner-images/issues/12898) |
***
# Ubuntu 24.04
- OS Version: 24.04.3 LTS
- Kernel Version: 6.11.0-1018-azure
- Image Version: 20251102.99.1
- Systemd version: 255.4-1ubuntu8.11
- Image Version: 20250824.1.0
- Systemd version: 255.4-1ubuntu8.10
## Installed Software
@@ -17,27 +12,27 @@
- Clang-format: 16.0.6, 17.0.6, 18.1.3
- Clang-tidy: 16.0.6, 17.0.6, 18.1.3
- Dash 0.5.12-6ubuntu5
- GNU C++: 12.4.0, 13.3.0, 14.2.0
- GNU Fortran: 12.4.0, 13.3.0, 14.2.0
- Julia 1.12.1
- Kotlin 2.2.21-release-469
- Node.js 20.19.5
- GNU C++: 12.3.0, 13.3.0, 14.2.0
- GNU Fortran: 12.3.0, 13.3.0, 14.2.0
- Julia 1.11.6
- Kotlin 2.2.10-release-430
- Node.js 20.19.4
- Perl 5.38.2
- Python 3.12.3
- Ruby 3.2.3
- Swift 6.2
- Swift 6.1.2
### Package Management
- cpan 1.64
- Helm 3.19.0
- Homebrew 4.6.19
- Miniconda 25.9.1
- Helm 3.18.6
- Homebrew 4.6.6
- Miniconda 25.5.1
- Npm 10.8.2
- Pip 24.0
- Pip3 24.0
- Pipx 1.8.0
- Pipx 1.7.1
- RubyGems 3.4.20
- Vcpkg (build from commit e3ed41868d)
- Vcpkg (build from commit 6ecbbbdf31)
- Yarn 1.22.22
#### Environment variables
@@ -56,73 +51,72 @@ to accomplish this.
### Project Management
- Ant 1.10.14
- Gradle 9.2.0
- Lerna 9.0.0
- Gradle 9.0.0
- Lerna 8.2.3
- Maven 3.9.11
### Tools
- Ansible 2.19.3
- AzCopy 10.31.0 - available by `azcopy` and `azcopy10` aliases
- Bazel 8.4.2
- Ansible 2.18.8
- AzCopy 10.30.0 - available by `azcopy` and `azcopy10` aliases
- Bazel 8.3.1
- Bazelisk 1.26.0
- Bicep 0.38.33
- Bicep 0.37.4
- Buildah 1.33.7
- CMake 3.31.6
- CodeQL Action Bundle 2.23.3
- CodeQL Action Bundle 2.22.4
- Docker Amazon ECR Credential Helper 0.10.1
- Docker Compose v2 2.38.2
- Docker-Buildx 0.29.1
- Docker-Buildx 0.27.0
- Docker Client 28.0.4
- Docker Server 28.0.4
- Fastlane 2.228.0
- Git 2.51.2
- Git LFS 3.7.1
- Git 2.51.0
- Git LFS 3.7.0
- Git-ftp 1.6.0
- Haveged 1.9.14
- jq 1.7
- Kind 0.30.0
- Kubectl 1.34.1
- Kind 0.29.0
- Kubectl 1.33.4
- Kustomize 5.7.1
- MediaInfo 24.01
- Mercurial 6.7.2
- Minikube 1.37.0
- Minikube 1.36.0
- n 10.2.0
- Newman 6.2.1
- nvm 0.40.3
- OpenSSL 3.0.13-0ubuntu3.6
- Packer 1.14.2
- Parcel 2.16.0
- OpenSSL 3.0.13-0ubuntu3.5
- Packer 1.14.1
- Parcel 2.15.4
- Podman 4.9.3
- Pulumi 3.205.0
- Pulumi 3.191.0
- Skopeo 1.13.3
- Sphinx Open Source Search Server 2.2.11
- yamllint 1.37.1
- yq 4.48.1
- yq 4.47.1
- zstd 1.5.7
- Ninja 1.13.1
### CLI Tools
- AWS CLI 2.31.27
- AWS CLI 2.28.16
- AWS CLI Session Manager Plugin 1.2.707.0
- AWS SAM CLI 1.145.2
- Azure CLI 2.78.0
- AWS SAM CLI 1.143.0
- Azure CLI 2.76.0
- Azure CLI (azure-devops) 1.0.2
- GitHub CLI 2.82.1
- Google Cloud CLI 545.0.0
- GitHub CLI 2.78.0
- Google Cloud CLI 535.0.0
### Java
| Version | Environment Variable |
| -------------------- | -------------------- |
| 8.0.472+8 | JAVA_HOME_8_X64 |
| 11.0.29+7 | JAVA_HOME_11_X64 |
| 17.0.17+10 (default) | JAVA_HOME_17_X64 |
| 21.0.9+10 | JAVA_HOME_21_X64 |
| 25.0.1+8 | JAVA_HOME_25_X64 |
| Version | Environment Variable |
| ------------------- | -------------------- |
| 8.0.462+8 | JAVA_HOME_8_X64 |
| 11.0.28+6 | JAVA_HOME_11_X64 |
| 17.0.16+8 (default) | JAVA_HOME_17_X64 |
| 21.0.8+9 | JAVA_HOME_21_X64 |
### PHP Tools
- PHP: 8.3.6
- Composer 2.8.12
- PHPUnit 8.5.48
- Composer 2.8.11
- PHPUnit 8.5.44
```
Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
```
@@ -134,22 +128,22 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
- Stack 3.7.1
### Rust Tools
- Cargo 1.91.0
- Rust 1.91.0
- Rustdoc 1.91.0
- Cargo 1.89.0
- Rust 1.89.0
- Rustdoc 1.89.0
- Rustup 1.28.2
#### Packages
- Rustfmt 1.8.0
### Browsers and Drivers
- Google Chrome 142.0.7444.59
- ChromeDriver 142.0.7444.59
- Chromium 142.0.7444.0
- Microsoft Edge 142.0.3595.53
- Microsoft Edge WebDriver 142.0.3595.53
- Selenium server 4.38.0
- Mozilla Firefox 144.0.2
- Google Chrome 139.0.7258.138
- ChromeDriver 139.0.7258.138
- Chromium 139.0.7258.0
- Microsoft Edge 139.0.3405.111
- Microsoft Edge WebDriver 139.0.3405.111
- Selenium server 4.35.0
- Mozilla Firefox 142.0
- Geckodriver 0.36.0
#### Environment variables
@@ -161,8 +155,8 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
| SELENIUM_JAR_PATH | /usr/share/java/selenium-server.jar |
### .NET Tools
- .NET Core SDK: 8.0.121, 8.0.206, 8.0.318, 8.0.415, 9.0.111, 9.0.205, 9.0.306
- nbgv 3.8.118+69b3e0b5a0
- .NET Core SDK: 8.0.119
- nbgv 3.7.115+d31f50f4d1
### Databases
- sqlite3 3.45.1
@@ -176,7 +170,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
```
#### MySQL
- MySQL 8.0.43-0ubuntu0.24.04.2
- MySQL 8.0.43-0ubuntu0.24.04.1
```
User: root
Password: root
@@ -189,21 +183,19 @@ Use the following command as a part of your job to start the service: 'sudo syst
#### Go
- 1.22.12
- 1.23.12
- 1.24.9
- 1.25.3
- 1.24.6
#### Node.js
- 20.19.5
- 22.21.1
- 24.11.0
- 18.20.8
- 20.19.4
- 22.18.0
#### Python
- 3.9.24
- 3.10.19
- 3.11.14
- 3.12.12
- 3.13.9
- 3.14.0
- 3.9.23
- 3.10.18
- 3.11.13
- 3.12.11
- 3.13.7
#### PyPy
- 3.9.19 [PyPy 7.3.16]
@@ -212,15 +204,15 @@ Use the following command as a part of your job to start the service: 'sudo syst
#### Ruby
- 3.2.9
- 3.3.10
- 3.4.7
- 3.3.9
- 3.4.5
### PowerShell Tools
- PowerShell 7.4.13
- PowerShell 7.4.11
#### PowerShell Modules
- Az: 12.5.0
- Microsoft.Graph: 2.32.0
- Microsoft.Graph: 2.30.0
- Pester: 5.7.1
- PSScriptAnalyzer: 1.24.0
@@ -231,17 +223,17 @@ Use the following command as a part of your job to start the service: 'sudo syst
| nginx | 1.24.0 | /etc/nginx/nginx.conf | inactive | 80 |
### Android
| Package Name | Version |
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Android Command Line Tools | 12.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.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.31.5 |
| Google Play services | 49 |
| Google Repository | 58 |
| NDK | 26.3.11579264<br>27.3.13750724 (default)<br>28.2.13676358 |
| Package Name | Version |
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Android Command Line Tools | 12.0 |
| Android SDK Build-tools | 36.0.0<br>35.0.0 35.0.1<br>34.0.0 |
| Android SDK Platform-Tools | 36.0.0 |
| Android SDK Platforms | 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)<br>android-33-ext5 (rev 1)<br>android-33-ext4 (rev 1) |
| Android Support Repository | 47.0.0 |
| CMake | 3.31.5 |
| Google Play services | 49 |
| Google Repository | 58 |
| NDK | 26.3.11579264<br>27.3.13750724 (default)<br>28.2.13676358 |
#### Environment variables
| Name | Value |
@@ -260,16 +252,16 @@ Use the following command as a part of your job to start the service: 'sudo syst
| aria2 | 1.37.0+debian-1build3 |
| autoconf | 2.71-3 |
| automake | 1:1.16.5-1.3ubuntu1 |
| binutils | 2.42-4ubuntu2.6 |
| binutils | 2.42-4ubuntu2.5 |
| bison | 2:3.8.2+dfsg-1build2 |
| brotli | 1.1.0-2build2 |
| bzip2 | 1.0.8-5.1build0.1 |
| coreutils | 9.4-3ubuntu6.1 |
| coreutils | 9.4-3ubuntu6 |
| curl | 8.5.0-2ubuntu10.6 |
| dbus | 1.14.10-4ubuntu4.1 |
| dnsutils | 1:9.18.39-0ubuntu0.24.04.2 |
| dpkg | 1.22.6ubuntu6.5 |
| dpkg-dev | 1.22.6ubuntu6.5 |
| dnsutils | 1:9.18.30-0ubuntu0.24.04.2 |
| dpkg | 1.22.6ubuntu6.1 |
| dpkg-dev | 1.22.6ubuntu6.1 |
| fakeroot | 1.33-1 |
| file | 1:5.45-3build1 |
| findutils | 4.9.0-5build1 |
@@ -283,12 +275,11 @@ Use the following command as a part of your job to start the service: 'sudo syst
| iproute2 | 6.1.0-1ubuntu6.2 |
| iputils-ping | 3:20240117-1ubuntu0.1 |
| jq | 1.7.1-3ubuntu0.24.04.1 |
| libnss3-tools | 2:3.98-1build1 |
| libsqlite3-dev | 3.45.1-1ubuntu2.5 |
| libssl-dev | 3.0.13-0ubuntu3.6 |
| libsqlite3-dev | 3.45.1-1ubuntu2.4 |
| libssl-dev | 3.0.13-0ubuntu3.5 |
| libtool | 2.4.7-7build1 |
| libyaml-dev | 0.2.5-1build1 |
| locales | 2.39-0ubuntu8.6 |
| locales | 2.39-0ubuntu8.5 |
| lz4 | 1.9.4-1build1.1 |
| m4 | 1.4.19-4build1 |
| make | 4.3-4.1build2 |
@@ -296,7 +287,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
| mercurial | 6.7.2-1ubuntu2.2 |
| net-tools | 2.10-0.1ubuntu4.4 |
| netcat | 1.226-1ubuntu2 |
| openssh-client | 1:9.6p1-3ubuntu13.14 |
| openssh-client | 1:9.6p1-3ubuntu13.13 |
| p7zip-full | 16.02+transitional.1 |
| p7zip-rar | 16.02+transitional.1 |
| parallel | 20231122+ds-1 |
@@ -309,12 +300,12 @@ Use the following command as a part of your job to start the service: 'sudo syst
| rsync | 3.2.7-1ubuntu1.2 |
| shellcheck | 0.9.0-1 |
| sphinxsearch | 2.2.11-8build1 |
| sqlite3 | 3.45.1-1ubuntu2.5 |
| ssh | 1:9.6p1-3ubuntu13.14 |
| sqlite3 | 3.45.1-1ubuntu2.4 |
| ssh | 1:9.6p1-3ubuntu13.13 |
| sshpass | 1.09-1 |
| sudo | 1.9.15p5-3ubuntu5.24.04.1 |
| swig | 4.2.0-2ubuntu1 |
| systemd-coredump | 255.4-1ubuntu8.11 |
| systemd-coredump | 255.4-1ubuntu8.10 |
| tar | 1.35+dfsg-3build1 |
| telnet | 0.17+2.5-3ubuntu4 |
| texinfo | 7.1-3build2 |
@@ -325,8 +316,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
| unzip | 6.0-28ubuntu4.1 |
| upx | 4.2.2-3 |
| wget | 1.21.4-1ubuntu4.1 |
| xvfb | 2:21.1.12-1ubuntu1.5 |
| xvfb | 2:21.1.12-1ubuntu1.4 |
| xz-utils | 5.6.1+really5.4.5-1ubuntu0.2 |
| zip | 3.0-13ubuntu0.2 |
| zsync | 0.6.2-5build1 |
@@ -78,7 +78,3 @@ fi
if is_ubuntu22; then
sed -i 's/openssl_conf = openssl_init/#openssl_conf = openssl_init/g' /etc/ssl/openssl.cnf
fi
# Disable man-db auto update
echo "set man-db/auto-update false" | debconf-communicate
dpkg-reconfigure man-db
@@ -15,8 +15,8 @@ add_filtered_installation_components() {
local tools_array=("$@")
for item in ${tools_array[@]}; do
# Take the last version number that appears after the last '-' or ';'
item_version=$(echo "$item" | grep -oE '[-;][0-9.]+' | grep -oE '[0-9.]+')
# Take the last argument after splitting string by ';'' and '-''
item_version=$(echo "${item##*[-;]}")
# Semver 'comparison'. Add item to components array, if item's version is greater than or equal to minimum version
if [[ "$(printf "${minimum_version}\n${item_version}\n" | sort -V | head -n1)" == "$minimum_version" ]]; then
@@ -9,59 +9,83 @@ source $HELPER_SCRIPTS/etc-environment.sh
source $HELPER_SCRIPTS/install.sh
source $HELPER_SCRIPTS/os.sh
extract_dotnet_sdk() {
local archive_name=$1
set -e
destination="./tmp-$(basename -s .tar.gz $archive_name)"
echo "Extracting $archive_name to $destination"
mkdir "$destination" && tar -C "$destination" -xzf "$archive_name"
rsync -qav --remove-source-files "$destination/shared/" /usr/share/dotnet/shared/
rsync -qav --remove-source-files "$destination/host/" /usr/share/dotnet/host/
rsync -qav --remove-source-files "$destination/sdk/" /usr/share/dotnet/sdk/
rm -rf "$destination" "$archive_name"
}
# Ubuntu 20 doesn't support EOL versions
latest_dotnet_packages=$(get_toolset_value '.dotnet.aptPackages[]')
dotnet_versions=$(get_toolset_value '.dotnet.versions[]')
dotnet_tools=$(get_toolset_value '.dotnet.tools[].name')
# Disable telemetry
export DOTNET_CLI_TELEMETRY_OPTOUT=1
# Install dotnet dependencies
# https://learn.microsoft.com/en-us/dotnet/core/install/linux-ubuntu-decision#dependencies
# Install .NET SDK from apt
# There is a versions conflict, that leads to
# Microsoft <-> Canonical repos dependencies mix up.
# Give Microsoft's repo higher priority to avoid collisions.
# See: https://github.com/dotnet/core/issues/7699
cat << EOF > /etc/apt/preferences.d/dotnet
Package: *net*
Pin: origin packages.microsoft.com
Pin-Priority: 1001
EOF
apt-get update
apt-get install --no-install-recommends \
ca-certificates \
libc6 \
libgcc-s1 \
libgssapi-krb5-2 \
liblttng-ust1 \
libssl3 \
libstdc++6 \
zlib1g
if is_ubuntu22; then
apt-get install --no-install-recommends libicu70
fi
for latest_package in ${latest_dotnet_packages[@]}; do
echo "Determining if .NET Core ($latest_package) is installed"
if ! dpkg -S $latest_package &> /dev/null; then
echo "Could not find .NET Core ($latest_package), installing..."
apt-get install $latest_package
else
echo ".NET Core ($latest_package) is already installed"
fi
done
if is_ubuntu24; then
apt-get install --no-install-recommends libicu74
fi
rm /etc/apt/preferences.d/dotnet
# Install .NET SDKs and Runtimes
mkdir -p /usr/share/dotnet
apt-get update
# Install .NET SDK from home repository
# Get list of all released SDKs from channels which are not end-of-life or preview
sdks=()
for version in ${dotnet_versions[@]}; do
release_url="https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/${version}/releases.json"
releases=$(cat "$(download_with_retry "$release_url")")
sdks=("${sdks[@]}" $(echo "${releases}" | jq -r '.releases[].sdk.version | select(contains("preview") or contains("rc") | not)'))
sdks=("${sdks[@]}" $(echo "${releases}" | jq -r '.releases[].sdks[]?.version | select(contains("preview") or contains("rc") | not)'))
if [[ $version == "6.0" ]]; then
sdks=("${sdks[@]}" $(echo "${releases}" | jq -r 'first(.releases[].sdks[]?.version | select(contains("preview") or contains("rc") | not))'))
else
sdks=("${sdks[@]}" $(echo "${releases}" | jq -r '.releases[].sdk.version | select(contains("preview") or contains("rc") | not)'))
sdks=("${sdks[@]}" $(echo "${releases}" | jq -r '.releases[].sdks[]?.version | select(contains("preview") or contains("rc") | not)'))
fi
done
sorted_sdks=$(echo ${sdks[@]} | tr ' ' '\n' | sort -r | uniq -w 5)
## Download installer from dot.net
DOTNET_INSTALL_SCRIPT="https://dot.net/v1/dotnet-install.sh"
install_script_path=$(download_with_retry $DOTNET_INSTALL_SCRIPT)
chmod +x $install_script_path
# Download/install additional SDKs in parallel
export -f download_with_retry
export -f extract_dotnet_sdk
for sdk in ${sorted_sdks[@]}; do
echo "Installing .NET SDK $sdk"
$install_script_path --version $sdk --install-dir /usr/share/dotnet --no-path
done
parallel --jobs 0 --halt soon,fail=1 \
'url="https://dotnetcli.blob.core.windows.net/dotnet/Sdk/{}/dotnet-sdk-{}-linux-x64.tar.gz"; \
download_with_retry $url' ::: "${sorted_sdks[@]}"
## Dotnet installer doesn't create symlinks to executable or modify PATH
ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet
find . -name "*.tar.gz" | parallel --halt soon,fail=1 'extract_dotnet_sdk {}'
# NuGetFallbackFolder at /usr/share/dotnet/sdk/NuGetFallbackFolder is warmed up by smoke test
# Additional FTE will just copy to ~/.dotnet/NuGet which provides no benefit on a fungible machine
set_etc_environment_variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE 1
set_etc_environment_variable DOTNET_NOLOGO 1
set_etc_environment_variable DOTNET_MULTILEVEL_LOOKUP 0
+3 -3
View File
@@ -23,9 +23,9 @@ fi
apt-get install libz-dev openssl libssl-dev
echo "Install Ruby from toolset..."
package_tar_names=$(curl -fsSL "https://api.github.com/repos/ruby/ruby-builder/releases/latest" | jq -r '.assets[].name')
toolset_versions=$(get_toolset_value '.toolcache[] | select(.name | contains("Ruby")) | .versions[]')
platform_version=$(get_toolset_value '.toolcache[] | select(.name | contains("Ruby")) | .platform_version')
arch=$(get_toolset_value '.toolcache[] | select(.name | contains("Ruby")) | .arch')
ruby_path="$AGENT_TOOLSDIRECTORY/Ruby"
echo "Check if Ruby hostedtoolcache folder exist..."
@@ -34,8 +34,7 @@ if [[ ! -d $ruby_path ]]; then
fi
for toolset_version in ${toolset_versions[@]}; do
download_url=$(resolve_github_release_asset_url "ruby/ruby-builder" "test(\"ruby-${toolset_version}-ubuntu-${platform_version}-${arch}.tar.gz\")" "${toolset_version}" "false" "true")
package_tar_name="${download_url##*/}"
package_tar_name=$(echo "$package_tar_names" | grep "^ruby-${toolset_version}-ubuntu-${platform_version}.tar.gz$" | sort -V | tail -1)
ruby_version=$(echo "$package_tar_name" | cut -d'-' -f 2)
ruby_version_path="$ruby_path/$ruby_version"
@@ -43,6 +42,7 @@ for toolset_version in ${toolset_versions[@]}; do
mkdir -p $ruby_version_path
echo "Downloading tar archive $package_tar_name"
download_url="https://github.com/ruby/ruby-builder/releases/download/toolcache/${package_tar_name}"
package_archive_path=$(download_with_retry "$download_url")
echo "Expand '$package_tar_name' to the '$ruby_version_path' folder"
@@ -8,7 +8,6 @@ Describe "Apt" {
switch ($toolName) {
"acl" { $toolName = "getfacl"; break }
"aria2" { $toolName = "aria2c"; break }
"libnss3-tools" { $toolName = "certutil"; break }
"p7zip-full" { $toolName = "p7zip"; break }
"subversion" { $toolName = "svn"; break }
"sphinxsearch" { $toolName = "searchd"; break }
+2 -5
View File
@@ -2,11 +2,8 @@
# If the test is running on the ADO pipeline or on the GitHub actions, the test will be skipped
Describe "Disk free space" -Skip:(-not [String]::IsNullOrEmpty($env:AGENT_NAME) -or -not [String]::IsNullOrEmpty($env:RUNNER_NAME)) {
It "Image has enough free space" {
$diskInfo = Get-PSDrive "/"
$totalSpaceGB = [math]::Floor(($diskInfo.Used + $diskInfo.Free) / 1GB)
$freeSpaceGB = [math]::Floor($diskInfo.Free / 1GB)
Write-Host " [i] Disk size: ${totalSpaceGB} GB; Free space: ${freeSpaceGB} GB"
$freeSpaceGB | Should -BeGreaterOrEqual 17
$freeSpace = (Get-PSDrive "/").Free
$freeSpace | Should -BeGreaterOrEqual 17GB
}
}
@@ -22,7 +22,6 @@ source "azure-arm" "image" {
os_disk_size_gb = local.image_properties.os_disk_size_gb
os_type = var.image_os_type
private_virtual_network_with_public_ip = var.private_virtual_network_with_public_ip
ssh_clear_authorized_keys = var.ssh_clear_authorized_keys
temp_resource_group_name = var.temp_resource_group_name
virtual_network_name = var.virtual_network_name
virtual_network_resource_group_name = var.virtual_network_resource_group_name
@@ -102,10 +102,6 @@ variable "source_image_version" {
type = string
default = "latest"
}
variable "ssh_clear_authorized_keys" {
type = bool
default = true
}
variable "temp_resource_group_name" {
type = string
default = "${env("TEMP_RESOURCE_GROUP_NAME")}"
+12 -10
View File
@@ -11,8 +11,7 @@
"3.10.*",
"3.11.*",
"3.12.*",
"3.13.*",
"3.14.*"
"3.13.*"
]
},
{
@@ -33,9 +32,9 @@
"platform" : "linux",
"arch": "x64",
"versions": [
"18.*",
"20.*",
"22.*",
"24.*"
"22.*"
]
},
{
@@ -46,8 +45,7 @@
"versions": [
"1.22.*",
"1.23.*",
"1.24.*",
"1.25.*"
"1.24.*"
],
"default": "1.24.*"
},
@@ -56,6 +54,7 @@
"platform_version": "22.04",
"arch": "x64",
"versions": [
"3.1.*",
"3.2.*",
"3.3.*",
"3.4.*"
@@ -72,7 +71,7 @@
],
"java": {
"default": "11",
"versions": [ "8", "11", "17", "21", "25"],
"versions": [ "8", "11", "17", "21"],
"maven": "3.9.11"
},
"android": {
@@ -179,7 +178,6 @@
"binutils",
"bison",
"brotli",
"libnss3-tools",
"coreutils",
"file",
"findutils",
@@ -270,10 +268,13 @@
}
],
"dotnet": {
"aptPackages": [
"dotnet-sdk-8.0",
"dotnet-sdk-9.0"
],
"versions": [
"8.0",
"9.0",
"10.0"
"9.0"
],
"tools": [
{ "name": "nbgv", "test": "nbgv --version", "getversion" : "nbgv --version" }
@@ -289,6 +290,7 @@
},
"gcc": {
"versions": [
"g++-9",
"g++-10",
"g++-12"
]
+11 -14
View File
@@ -11,8 +11,7 @@
"3.10.*",
"3.11.*",
"3.12.*",
"3.13.*",
"3.14.*"
"3.13.*"
]
},
{
@@ -31,9 +30,9 @@
"platform" : "linux",
"arch": "x64",
"versions": [
"18.*",
"20.*",
"22.*",
"24.*"
"22.*"
]
},
{
@@ -44,8 +43,7 @@
"versions": [
"1.22.*",
"1.23.*",
"1.24.*",
"1.25.*"
"1.24.*"
],
"default": "1.24.*"
},
@@ -70,7 +68,7 @@
],
"java": {
"default": "17",
"versions": [ "8", "11", "17", "21", "25"],
"versions": [ "8", "11", "17", "21"],
"maven": "3.9.11"
},
"android": {
@@ -85,13 +83,12 @@
"addon_list": [
],
"additional_tools": [
"cmake;3.31.5",
"cmake;4.1.2"
"cmake;3.31.5"
],
"ndk": {
"default": "27",
"versions": [
"26", "27", "28", "29"
"26", "27", "28"
]
}
},
@@ -158,7 +155,6 @@
"binutils",
"bison",
"brotli",
"libnss3-tools",
"coreutils",
"file",
"findutils",
@@ -232,10 +228,11 @@
}
],
"dotnet": {
"aptPackages": [
"dotnet-sdk-8.0"
],
"versions": [
"8.0",
"9.0",
"10.0"
"8.0"
],
"tools": [
{ "name": "nbgv", "test": "nbgv --version", "getversion" : "nbgv --version" }
+324 -322
View File
@@ -1,10 +1,12 @@
| Announcements |
|-|
| [[Ubuntu & Windows] Four tools scheduled for deprecation on November 3, 2025](https://github.com/actions/runner-images/issues/12898) |
| [Windows-latest workflows will use Windows Server 2025 image in GH](https://github.com/actions/runner-images/issues/12677) |
| [[Windows-2022] Openssl version will be updated to version 3.5.2 on 2025-10-10](https://github.com/actions/runner-images/issues/12676) |
| [[Windows 2022] MongoDB 5.x version will be removed from Windows 2022 image on 2025-09-01 and will be updated to 7.x version.](https://github.com/actions/runner-images/issues/12640) |
***
# Windows Server 2022
- OS Version: 10.0.20348 Build 4297
- Image Version: 20251102.87.1
- OS Version: 10.0.20348 Build 4052
- Image Version: 20250825.1.0
## Windows features
- Windows Subsystem for Linux (WSLv1): Enabled
@@ -13,27 +15,27 @@
### Language and Runtime
- Bash 5.2.37(1)-release
- Go 1.24.9
- Julia 1.12.0
- Kotlin 2.2.21
- Go 1.24.6
- Julia 1.11.6
- Kotlin 2.2.10
- LLVM 20.1.8
- Node 20.19.5
- Node 20.19.4
- Perl 5.32.1
- PHP 8.4.14
- PHP 8.4.11
- Python 3.9.13
- Ruby 3.3.10
- Ruby 3.3.9
### Package Management
- Chocolatey 2.5.1
- Composer 2.8.12
- Helm 3.19.0
- Miniconda 25.9.1 (pre-installed on the image but not added to PATH)
- Chocolatey 2.5.0
- Composer 2.8.11
- Helm 3.18.5
- Miniconda 25.7.0 (pre-installed on the image but not added to PATH)
- NPM 10.8.2
- NuGet 6.14.0.116
- pip 25.3 (python 3.9)
- Pipx 1.8.0
- pip 25.2 (python 3.9)
- Pipx 1.7.1
- RubyGems 3.5.22
- Vcpkg (build from commit e3ed41868d)
- Vcpkg (build from commit 6ecbbbdf31)
- Yarn 1.22.22
#### Environment variables
@@ -44,45 +46,45 @@
### Project Management
- Ant 1.10.15
- Gradle 9.1
- Gradle 9.0
- Maven 3.9.11
- sbt 1.11.7
- sbt 1.11.5
### Tools
- 7zip 25.01
- aria2 1.37.0
- azcopy 10.31.0
- Bazel 8.4.2
- azcopy 10.30.0
- Bazel 8.3.1
- Bazelisk 1.26.0
- Bicep 0.38.33
- Bicep 0.37.4
- Cabal 3.16.0.0
- CMake 3.31.6
- CodeQL Action Bundle 2.23.3
- CodeQL Action Bundle 2.22.4
- Docker 27.5.1
- Docker Compose v2 2.32.2
- Docker-wincred 0.9.4
- Docker-wincred 0.9.3
- ghc 9.12.2
- Git 2.51.2.windows.1
- Git LFS 3.7.1
- ImageMagick 7.1.2-8
- InnoSetup 6.5.4
- Git 2.51.0.windows.1
- Git LFS 3.7.0
- ImageMagick 7.1.2-1
- InnoSetup 6.4.0
- jq 1.8.1
- Kind 0.30.0
- Kubectl 1.34.1
- Kind 0.29.0
- Kubectl 1.33.4
- Mercurial 6.3.1
- gcc 14.2.0
- gdb 16.2
- GNU Binutils 2.44
- gcc 12.2.0
- gdb 11.2
- GNU Binutils 2.39
- Newman 6.2.1
- NSIS 3.10
- OpenSSL 3.6.0
- Packer 1.14.2
- Pulumi 3.205.0
- R 4.5.2
- OpenSSL 1.1.1w
- Packer 1.12.0
- Pulumi 3.191.0
- R 4.4.2
- Service Fabric SDK 10.1.2493.9590
- Stack 3.7.1
- Subversion (SVN) 1.14.5
- Swig 4.3.1
- Swig 4.1.1
- VSWhere 3.1.7
- WinAppDriver 1.2.2009.02003
- WiX Toolset 3.14.1.8722
@@ -91,37 +93,37 @@
- Ninja 1.13.1
### CLI Tools
- Alibaba Cloud CLI 3.1.0
- AWS CLI 2.31.27
- AWS SAM CLI 1.145.2
- Alibaba Cloud CLI 3.0.298
- AWS CLI 2.28.16
- AWS SAM CLI 1.143.0
- AWS Session Manager CLI 1.2.707.0
- Azure CLI 2.78.0
- Azure CLI 2.76.0
- Azure DevOps CLI extension 1.0.2
- GitHub CLI 2.82.1
- GitHub CLI 2.78.0
### Rust Tools
- Cargo 1.91.0
- Rust 1.91.0
- Rustdoc 1.91.0
- Cargo 1.89.0
- Rust 1.89.0
- Rustdoc 1.89.0
- Rustup 1.28.2
#### Packages
- bindgen 0.72.1
- bindgen 0.72.0
- cargo-audit 0.21.2
- cargo-outdated 0.17.0
- cbindgen 0.29.2
- Clippy 0.1.91
- cbindgen 0.29.0
- Clippy 0.1.89
- Rustfmt 1.8.0
### Browsers and Drivers
- Google Chrome 142.0.7444.60
- Chrome Driver 142.0.7444.59
- Microsoft Edge 142.0.3595.53
- Microsoft Edge Driver 142.0.3595.53
- Mozilla Firefox 144.0.2
- Google Chrome 139.0.7258.139
- Chrome Driver 139.0.7258.138
- Microsoft Edge 139.0.3405.111
- Microsoft Edge Driver 139.0.3405.111
- Mozilla Firefox 142.0
- Gecko Driver 0.36.0
- IE Driver 4.14.0.0
- Selenium server 4.38.0
- Selenium server 4.35.0
#### Environment variables
| Name | Value |
@@ -134,11 +136,10 @@
### Java
| Version | Environment Variable |
| ------------------- | -------------------- |
| 8.0.472+8 (default) | JAVA_HOME_8_X64 |
| 11.0.29+7 | JAVA_HOME_11_X64 |
| 17.0.17+10 | JAVA_HOME_17_X64 |
| 21.0.9+10.0 | JAVA_HOME_21_X64 |
| 25.0.1+8.0 | JAVA_HOME_25_X64 |
| 8.0.462+8 (default) | JAVA_HOME_8_X64 |
| 11.0.28+6 | JAVA_HOME_11_X64 |
| 17.0.16+8 | JAVA_HOME_17_X64 |
| 21.0.8+9.0 | JAVA_HOME_21_X64 |
### Shells
| Name | Target |
@@ -162,21 +163,19 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
#### Go
- 1.22.12
- 1.23.12
- 1.24.9
- 1.25.3
- 1.24.6
#### Node.js
- 20.19.5
- 22.21.1
- 24.11.0
- 18.20.8
- 20.19.4
- 22.18.0
#### Python
- 3.9.13
- 3.10.11
- 3.11.9
- 3.12.10
- 3.13.9
- 3.14.0
- 3.13.7
#### PyPy
- 2.7.18 [PyPy 7.3.20]
@@ -186,281 +185,284 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
- 3.10.16 [PyPy 7.3.19]
#### Ruby
- 3.1.7
- 3.2.9
- 3.3.10
- 3.4.7
- 3.3.9
- 3.4.5
### Databases
#### PostgreSQL
| Property | Value |
| -------------------- | ---------------------------------------------------------------------------------------------------------------------- |
| ServiceName | postgresql-x64-14 |
| Version | 14.19 |
| 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 |
| Path | C:\Program Files\PostgreSQL\14 |
| UserName | postgres |
| Password | root |
| Property | Value |
| -------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
| ServiceName | postgresql-x64-14 |
| Version | 14.19 |
| ServiceStatus | Stopped |
| ServiceStartType | Disabled |
| EnvironmentVariables | PGBIN=C:\Program Files\PostgreSQL\14\bin <br> PGDATA=C:\Program Files\PostgreSQL\14\data <br> PGROOT=C:\Program Files\PostgreSQL\14 |
| Path | C:\Program Files\PostgreSQL\14 |
| UserName | postgres |
| Password | root |
#### MongoDB
| Version | ServiceName | ServiceStatus | ServiceStartType |
| -------- | ----------- | ------------- | ---------------- |
| 7.0.25.0 | MongoDB | Stopped | Disabled |
| 5.0.31.0 | MongoDB | Stopped | Disabled |
### Database tools
- Azure CosmosDb Emulator 2.14.25.0
- DacFx 170.2.70.1
- MySQL 8.0.44.0
- SQL OLEDB Driver 18 18.7.5.0
- SQL OLEDB Driver 19 19.4.1.0
- Azure CosmosDb Emulator 2.14.24.0
- DacFx 170.1.61.1
- MySQL 8.0.43.0
- SQL OLEDB Driver 18.7.4.0
- SQLPS 1.0
- MongoDB Shell (mongosh) 2.5.9
### Web Servers
| Name | Version | ConfigFile | ServiceName | ServiceStatus | ListenPort |
| ------ | ------- | ------------------------------------- | ----------- | ------------- | ---------- |
| Apache | 2.4.55 | C:\tools\Apache24\conf\httpd.conf | Apache | Stopped | 80 |
| Nginx | 1.29.3 | C:\tools\nginx-1.29.3\conf\nginx.conf | nginx | Stopped | 80 |
| Nginx | 1.29.0 | C:\tools\nginx-1.29.0\conf\nginx.conf | nginx | Stopped | 80 |
### Visual Studio Enterprise 2022
| Name | Version | Path |
| ----------------------------- | ------------- | -------------------------------------------------------- |
| Visual Studio Enterprise 2022 | 17.14.36623.8 | C:\Program Files\Microsoft Visual Studio\2022\Enterprise |
| Name | Version | Path |
| ----------------------------- | -------------- | -------------------------------------------------------- |
| Visual Studio Enterprise 2022 | 17.14.36414.22 | C:\Program Files\Microsoft Visual Studio\2022\Enterprise |
#### Workloads, components and extensions
| Package | Version |
| ------------------------------------------------------------------------- | --------------- |
| android | 35.0.78.0 |
| Component.Android.NDK.R23C | 17.14.36510.44 |
| Component.Android.SDK.MAUI | 17.14.36510.44 |
| Component.Dotfuscator | 17.14.36510.44 |
| Component.Linux.CMake | 17.14.36510.44 |
| Component.Linux.RemoteFileExplorer | 17.14.36510.44 |
| Component.MDD.Android | 17.14.36510.44 |
| Component.MDD.Linux | 17.14.36510.44 |
| Component.MDD.Linux.GCC.arm | 17.14.36510.44 |
| Component.Microsoft.VisualStudio.RazorExtension | 17.14.36510.44 |
| Component.Microsoft.VisualStudio.Tools.Applications.amd64 | 17.0.36522.0 |
| Component.Microsoft.VisualStudio.Web.AzureFunctions | 17.14.36510.44 |
| Component.Microsoft.Web.LibraryManager | 17.14.36510.44 |
| Component.Android.NDK.R23C | 17.14.36015.10 |
| Component.Android.SDK.MAUI | 17.14.36015.10 |
| Component.Dotfuscator | 17.14.36015.10 |
| Component.Linux.CMake | 17.14.36108.8 |
| Component.Linux.RemoteFileExplorer | 17.14.36108.8 |
| Component.MDD.Android | 17.14.36015.10 |
| Component.MDD.Linux | 17.14.36108.8 |
| Component.MDD.Linux.GCC.arm | 17.14.36015.10 |
| Component.Microsoft.VisualStudio.LiveShare.2022 | 1.0.5949 |
| Component.Microsoft.VisualStudio.RazorExtension | 17.14.36015.10 |
| Component.Microsoft.VisualStudio.Tools.Applications.amd64 | 17.0.35906.1 |
| Component.Microsoft.VisualStudio.Web.AzureFunctions | 17.14.36015.10 |
| Component.Microsoft.Web.LibraryManager | 17.14.36015.10 |
| Component.Microsoft.WebTools.BrowserLink.WebLivePreview | 17.14.2.50506 |
| Component.Microsoft.Windows.DriverKit | 10.0.26100.12 |
| Component.OpenJDK | 17.14.36510.44 |
| Component.UnityEngine.x64 | 17.14.36510.44 |
| Component.Unreal | 17.14.36510.44 |
| Component.Unreal.Android | 17.14.36510.44 |
| Component.Unreal.Debugger | 17.14.36510.44 |
| Component.Unreal.Ide | 17.14.36510.44 |
| Component.VisualStudio.GitHub.Copilot | 17.14.36621.7 |
| Component.OpenJDK | 17.14.36015.10 |
| Component.UnityEngine.x64 | 17.14.36015.10 |
| Component.Unreal | 17.14.36015.10 |
| Component.Unreal.Android | 17.14.36015.10 |
| Component.Unreal.Debugger | 17.14.36015.10 |
| Component.Unreal.Ide | 17.14.36015.10 |
| Component.VisualStudio.GitHub.Copilot | 17.14.36414.12 |
| Component.VSInstallerProjects2022 | 2.0.1 |
| Component.WixToolset.VisualStudioExtension.Dev17 | 1.0.0.22 |
| Component.WixToolset.VisualStudioExtension.Schemas3 | 1.0.0.22 |
| Component.Xamarin | 17.14.36510.44 |
| ComponentGroup.Microsoft.NET.AppModernization | 17.14.36614.33 |
| ios | 26.0.9752.0 |
| maccatalyst | 26.0.9752.0 |
| maui.blazor | 9.0.111.6930 |
| maui.core | 9.0.111.6930 |
| maui.windows | 9.0.111.6930 |
| Microsoft.Component.Azure.DataLake.Tools | 17.14.36510.44 |
| Microsoft.Component.ClickOnce | 17.14.36510.44 |
| Microsoft.Component.CodeAnalysis.SDK | 17.14.36510.44 |
| Microsoft.Component.MSBuild | 17.14.36510.44 |
| Microsoft.Component.NetFX.Native | 17.14.36510.44 |
| Microsoft.Component.PythonTools | 17.14.36510.44 |
| Microsoft.Component.PythonTools.Web | 17.14.36510.44 |
| Microsoft.Component.VC.Runtime.UCRTSDK | 17.14.36510.44 |
| Microsoft.ComponentGroup.Blend | 17.14.36510.44 |
| Microsoft.ComponentGroup.ClickOnce.Publish | 17.14.36510.44 |
| Microsoft.Net.Component.4.5.2.TargetingPack | 17.14.36510.44 |
| Microsoft.Net.Component.4.6.2.TargetingPack | 17.14.36510.44 |
| Microsoft.Net.Component.4.6.TargetingPack | 17.14.36510.44 |
| Microsoft.Net.Component.4.7.1.TargetingPack | 17.14.36510.44 |
| Microsoft.Net.Component.4.7.2.SDK | 17.14.36510.44 |
| Microsoft.Net.Component.4.7.2.TargetingPack | 17.14.36510.44 |
| Microsoft.Net.Component.4.7.TargetingPack | 17.14.36510.44 |
| Microsoft.Net.Component.4.8.1.SDK | 17.14.36510.44 |
| Microsoft.Net.Component.4.8.1.TargetingPack | 17.14.36510.44 |
| Microsoft.Net.Component.4.8.SDK | 17.14.36510.44 |
| Microsoft.Net.Component.4.8.TargetingPack | 17.14.36510.44 |
| Microsoft.Net.ComponentGroup.4.8.DeveloperTools | 17.14.36510.44 |
| Microsoft.Net.ComponentGroup.DevelopmentPrerequisites | 17.14.36510.44 |
| Microsoft.Net.ComponentGroup.TargetingPacks.Common | 17.14.36510.44 |
| microsoft.net.runtime.android | 9.0.1025.47515 |
| microsoft.net.runtime.android.aot | 9.0.1025.47515 |
| microsoft.net.runtime.android.aot.net8 | 9.0.1025.47515 |
| microsoft.net.runtime.android.net8 | 9.0.1025.47515 |
| microsoft.net.runtime.ios | 9.0.1025.47515 |
| microsoft.net.runtime.maccatalyst | 9.0.1025.47515 |
| microsoft.net.runtime.mono.tooling | 9.0.1025.47515 |
| microsoft.net.runtime.mono.tooling.net8 | 9.0.1025.47515 |
| microsoft.net.sdk.emscripten | 9.0.12.46904 |
| Microsoft.NetCore.Component.DevelopmentTools | 17.14.36510.44 |
| Microsoft.NetCore.Component.Runtime.8.0 | 17.14.36602.14 |
| Microsoft.NetCore.Component.Runtime.9.0 | 17.14.36602.14 |
| Microsoft.NetCore.Component.SDK | 17.14.36602.14 |
| Microsoft.NetCore.Component.Web | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.AppInsights.Tools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.AspNet | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.AspNet45 | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Azure.AuthoringTools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Azure.ClientLibs | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Azure.Compute.Emulator | 17.14.36517.7 |
| Microsoft.VisualStudio.Component.Azure.ResourceManager.Tools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Azure.ServiceFabric.Tools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Azure.Waverton | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Azure.Waverton.BuildTools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.ClassDesigner | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.CodeMap | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Common.Azure.Tools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.CoreEditor | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.CppBuildInsights | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Debugger.JustInTime | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.DiagnosticTools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.DockerTools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.DotNetModelBuilder | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.DslTools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Embedded | 17.14.36517.7 |
| Microsoft.VisualStudio.Component.EntityFramework | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.FSharp | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.FSharp.Desktop | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.FSharp.WebTemplates | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.GraphDocument | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Graphics | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Graphics.Tools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.HLSL | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.IISExpress | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.IntelliCode | 17.14.36621.7 |
| Microsoft.VisualStudio.Component.IntelliTrace.FrontEnd | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.JavaScript.Diagnostics | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.JavaScript.TypeScript | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.LinqToSql | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.LiveUnitTesting | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.ManagedDesktop.Core | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.ManagedDesktop.Prerequisites | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.MSODBC.SQL | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.MSSQL.CMDLnUtils | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Node.Tools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.NuGet | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.NuGet.BuildTools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.PortableLibrary | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Roslyn.Compiler | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Roslyn.LanguageServices | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Sharepoint.Tools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.SQL.CLR | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.SQL.DataSources | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.SQL.LocalDB.Runtime | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.SQL.SSDT | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.TeamOffice | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.TestTools.CodedUITest | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.TestTools.WebLoadTest | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.TextTemplating | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.TypeScript.TSServer | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Unity | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.UWP.VC.ARM64 | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.UWP.VC.ARM64EC | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM64 | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.ASAN | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.ATL | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.ATL.ARM | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.ATL.ARM.Spectre | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.ATL.ARM64 | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.ATL.ARM64.Spectre | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.ATL.Spectre | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.ATLMFC | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.ATLMFC.Spectre | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.CLI.Support | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.CMake.Project | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.CoreIde | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.DiagnosticTools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Llvm.Clang | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.MFC.ARM | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.MFC.ARM.Spectre | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.MFC.ARM64 | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.MFC.ARM64.Spectre | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Modules.x86.x64 | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Redist.14.Latest | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Redist.MSM | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM.Spectre | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM64.Spectre | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM64EC.Spectre | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Runtimes.x86.x64.Spectre | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.TestAdapterForBoostTest | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.TestAdapterForGoogleTest | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Tools.ARM | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Tools.ARM64 | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Tools.ARM64EC | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Tools.x86.x64 | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Vcpkg | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VSSDK | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Wcf.Tooling | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Web | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.WebDeploy | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Windows10SDK | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Windows10SDK.19041 | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Windows11SDK.22621 | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Windows11SDK.26100 | 17.14.36614.30 |
| Microsoft.VisualStudio.Component.Windows11Sdk.WindowsPerformanceToolkit | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.WindowsAppSdkSupport.CSharp | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Workflow | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.WslDebugging | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.ArchitectureTools.Native | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.Azure.CloudServices | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.Azure.Prerequisites | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.Azure.ResourceManager.Tools | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.AzureFunctions | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.Maui.All | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.Maui.Android | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.Maui.Blazor | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.Maui.iOS | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.Maui.MacCatalyst | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.Maui.Shared | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.Maui.Windows | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.MSIX.Packaging | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Llvm.Clang | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.UWP.NetCoreAndStandard | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.UWP.VC.v142 | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.VC.Tools.142.x86.x64 | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.VisualStudioExtension.Prerequisites | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.Web | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.Web.CloudTools | 17.14.36614.30 |
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.CMake | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.TemplateEngine | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.WindowsAppDevelopment.Prerequisites | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.WindowsAppSDK.Cs | 17.14.36510.44 |
| Microsoft.VisualStudio.Workload.Azure | 17.14.36518.2 |
| Component.Xamarin | 17.14.36015.10 |
| ios | 18.5.9214.0 |
| maccatalyst | 18.5.9214.0 |
| maui.blazor | 9.0.82.6628 |
| maui.core | 9.0.82.6628 |
| maui.windows | 9.0.82.6628 |
| Microsoft.Component.Azure.DataLake.Tools | 17.14.36015.10 |
| Microsoft.Component.ClickOnce | 17.14.36015.10 |
| Microsoft.Component.CodeAnalysis.SDK | 17.14.36015.10 |
| Microsoft.Component.MSBuild | 17.14.36015.10 |
| Microsoft.Component.NetFX.Native | 17.14.36015.10 |
| Microsoft.Component.PythonTools | 17.14.36015.10 |
| Microsoft.Component.PythonTools.Web | 17.14.36015.10 |
| Microsoft.Component.VC.Runtime.UCRTSDK | 17.14.36015.10 |
| Microsoft.ComponentGroup.Blend | 17.14.36015.10 |
| Microsoft.ComponentGroup.ClickOnce.Publish | 17.14.36015.10 |
| Microsoft.Net.Component.4.5.2.TargetingPack | 17.14.36015.10 |
| Microsoft.Net.Component.4.6.2.TargetingPack | 17.14.36015.10 |
| Microsoft.Net.Component.4.6.TargetingPack | 17.14.36015.10 |
| Microsoft.Net.Component.4.7.1.TargetingPack | 17.14.36015.10 |
| Microsoft.Net.Component.4.7.2.SDK | 17.14.36015.10 |
| Microsoft.Net.Component.4.7.2.TargetingPack | 17.14.36015.10 |
| Microsoft.Net.Component.4.7.TargetingPack | 17.14.36015.10 |
| Microsoft.Net.Component.4.8.1.SDK | 17.14.36015.10 |
| Microsoft.Net.Component.4.8.1.TargetingPack | 17.14.36015.10 |
| Microsoft.Net.Component.4.8.SDK | 17.14.36015.10 |
| Microsoft.Net.Component.4.8.TargetingPack | 17.14.36015.10 |
| Microsoft.Net.ComponentGroup.4.8.DeveloperTools | 17.14.36015.10 |
| Microsoft.Net.ComponentGroup.DevelopmentPrerequisites | 17.14.36015.10 |
| Microsoft.Net.ComponentGroup.TargetingPacks.Common | 17.14.36015.10 |
| microsoft.net.runtime.android | 9.0.825.36511 |
| microsoft.net.runtime.android.aot | 9.0.825.36511 |
| microsoft.net.runtime.android.aot.net8 | 9.0.825.36511 |
| microsoft.net.runtime.android.net8 | 9.0.825.36511 |
| microsoft.net.runtime.ios | 9.0.825.36511 |
| microsoft.net.runtime.ios.net8 | 9.0.825.36511 |
| microsoft.net.runtime.maccatalyst | 9.0.825.36511 |
| microsoft.net.runtime.maccatalyst.net8 | 9.0.825.36511 |
| microsoft.net.runtime.mono.tooling | 9.0.825.36511 |
| microsoft.net.runtime.mono.tooling.net8 | 9.0.825.36511 |
| microsoft.net.sdk.emscripten | 9.0.12.35301 |
| Microsoft.NetCore.Component.DevelopmentTools | 17.14.36015.10 |
| Microsoft.NetCore.Component.Runtime.8.0 | 17.14.36331.10 |
| Microsoft.NetCore.Component.Runtime.9.0 | 17.14.36331.10 |
| Microsoft.NetCore.Component.SDK | 17.14.36331.10 |
| Microsoft.NetCore.Component.Web | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.AppInsights.Tools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.AspNet | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.AspNet45 | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Azure.AuthoringTools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Azure.ClientLibs | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Azure.Compute.Emulator | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Azure.ResourceManager.Tools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Azure.ServiceFabric.Tools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Azure.Waverton | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Azure.Waverton.BuildTools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.ClassDesigner | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.CodeMap | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Common.Azure.Tools | 17.14.36024.20 |
| Microsoft.VisualStudio.Component.CoreEditor | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.CppBuildInsights | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Debugger.JustInTime | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.DiagnosticTools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.DockerTools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.DotNetModelBuilder | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.DslTools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Embedded | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.EntityFramework | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.FSharp | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.FSharp.Desktop | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.FSharp.WebTemplates | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.GraphDocument | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Graphics | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Graphics.Tools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.HLSL | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.IISExpress | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.IntelliCode | 17.14.36414.12 |
| Microsoft.VisualStudio.Component.IntelliTrace.FrontEnd | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.JavaScript.Diagnostics | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.JavaScript.TypeScript | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.LinqToSql | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.LiveUnitTesting | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.ManagedDesktop.Core | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.ManagedDesktop.Prerequisites | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.MSODBC.SQL | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.MSSQL.CMDLnUtils | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Node.Tools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.NuGet | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.NuGet.BuildTools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.PortableLibrary | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Roslyn.Compiler | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Roslyn.LanguageServices | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Sharepoint.Tools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.SQL.CLR | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.SQL.DataSources | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.SQL.LocalDB.Runtime | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.SQL.SSDT | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.TeamOffice | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.TestTools.CodedUITest | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.TestTools.WebLoadTest | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.TextTemplating | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.TypeScript.TSServer | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Unity | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.UWP.VC.ARM64 | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.UWP.VC.ARM64EC | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM64 | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.ASAN | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.ATL | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.ATL.ARM | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.ATL.ARM.Spectre | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.ATL.ARM64 | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.ATL.ARM64.Spectre | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.ATL.Spectre | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.ATLMFC | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.ATLMFC.Spectre | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.CLI.Support | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.CMake.Project | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.CoreIde | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.DiagnosticTools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Llvm.Clang | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.MFC.ARM | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.MFC.ARM.Spectre | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.MFC.ARM64 | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.MFC.ARM64.Spectre | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Modules.x86.x64 | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Redist.14.Latest | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Redist.MSM | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM.Spectre | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM64.Spectre | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM64EC.Spectre | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Runtimes.x86.x64.Spectre | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.TestAdapterForBoostTest | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.TestAdapterForGoogleTest | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Tools.ARM | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Tools.ARM64 | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Tools.ARM64EC | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Tools.x86.x64 | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Vcpkg | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VSSDK | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Wcf.Tooling | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Web | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.WebDeploy | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Windows10SDK | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Windows10SDK.19041 | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Windows11SDK.22621 | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Windows11SDK.26100 | 17.14.36414.12 |
| Microsoft.VisualStudio.Component.Windows11Sdk.WindowsPerformanceToolkit | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.WindowsAppSdkSupport.CSharp | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Workflow | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.WslDebugging | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.ArchitectureTools.Native | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.Azure.CloudServices | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.Azure.Prerequisites | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.Azure.ResourceManager.Tools | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.AzureFunctions | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.Maui.All | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.Maui.Android | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.Maui.Blazor | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.Maui.iOS | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.Maui.MacCatalyst | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.Maui.Shared | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.Maui.Windows | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.MSIX.Packaging | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Llvm.Clang | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.UWP.NetCoreAndStandard | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.UWP.VC.v142 | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.VC.Tools.142.x86.x64 | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.VisualStudioExtension.Prerequisites | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.Web | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.Web.CloudTools | 17.14.36322.40 |
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.CMake | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.TemplateEngine | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.WindowsAppDevelopment.Prerequisites | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.WindowsAppSDK.Cs | 17.14.36015.10 |
| Microsoft.VisualStudio.Workload.Azure | 17.14.36322.40 |
| Microsoft.VisualStudio.Workload.CoreEditor | 17.14.36015.10 |
| Microsoft.VisualStudio.Workload.Data | 17.14.36015.10 |
| Microsoft.VisualStudio.Workload.DataScience | 17.14.36015.10 |
| Microsoft.VisualStudio.Workload.ManagedDesktop | 17.14.36518.2 |
| Microsoft.VisualStudio.Workload.ManagedDesktop | 17.14.36015.10 |
| Microsoft.VisualStudio.Workload.ManagedGame | 17.14.36301.6 |
| Microsoft.VisualStudio.Workload.NativeCrossPlat | 17.14.36526.15 |
| Microsoft.VisualStudio.Workload.NativeDesktop | 17.14.36517.7 |
| Microsoft.VisualStudio.Workload.NativeCrossPlat | 17.14.36108.8 |
| Microsoft.VisualStudio.Workload.NativeDesktop | 17.14.36331.10 |
| Microsoft.VisualStudio.Workload.NativeGame | 17.14.36331.10 |
| Microsoft.VisualStudio.Workload.NativeMobile | 17.14.36015.10 |
| Microsoft.VisualStudio.Workload.NetCrossPlat | 17.14.36518.2 |
| Microsoft.VisualStudio.Workload.NetWeb | 17.14.36518.2 |
| Microsoft.VisualStudio.Workload.Node | 17.14.36517.7 |
| Microsoft.VisualStudio.Workload.NetCrossPlat | 17.14.36015.10 |
| Microsoft.VisualStudio.Workload.NetWeb | 17.14.36015.10 |
| Microsoft.VisualStudio.Workload.Node | 17.14.36015.10 |
| Microsoft.VisualStudio.Workload.Office | 17.14.36015.10 |
| Microsoft.VisualStudio.Workload.Python | 17.14.36015.10 |
| Microsoft.VisualStudio.Workload.Universal | 17.14.36331.10 |
| Microsoft.VisualStudio.Workload.VisualStudioExtension | 17.14.36015.10 |
| runtimes.ios | 9.0.1025.47515 |
| runtimes.maccatalyst | 9.0.1025.47515 |
| wasm.tools | 9.0.1025.47515 |
| runtimes.ios | 9.0.825.36511 |
| runtimes.ios.net8 | 9.0.825.36511 |
| runtimes.maccatalyst | 9.0.825.36511 |
| runtimes.maccatalyst.net8 | 9.0.825.36511 |
| wasm.tools | 9.0.825.36511 |
| ProBITools.MicrosoftAnalysisServicesModelingProjects2022 | 3.0.4 |
| ProBITools.MicrosoftReportProjectsforVisualStudio2022 | 3.0.1 |
| SSIS.MicrosoftDataToolsIntegrationServices | 2.0 |
| SSIS.MicrosoftDataToolsIntegrationServices | 1.6.2 |
| VisualStudioClient.MicrosoftVisualStudio2022InstallerProjects | 2.0.1 |
| Windows Driver Kit | 10.1.26100.4202 |
| Windows Driver Kit Visual Studio Extension | 10.0.26100.12 |
| Windows Software Development Kit | 10.1.26100.6584 |
| Windows Software Development Kit | 10.1.26100.4654 |
| WixToolset.WixToolsetVisualStudio2022Extension | 1.0.0.22 |
#### Microsoft Visual C++
@@ -482,22 +484,22 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
- 10.0.26100.0
### .NET Core Tools
- .NET Core SDK: 8.0.121, 8.0.206, 8.0.318, 8.0.415, 9.0.111, 9.0.205, 9.0.306
- .NET Core SDK: 8.0.119, 8.0.206, 8.0.316, 8.0.413, 9.0.109, 9.0.205, 9.0.304
- .NET Framework: 4.7.2, 4.8, 4.8.1
- Microsoft.AspNetCore.App: 6.0.40, 8.0.6, 8.0.21, 9.0.6, 9.0.10
- Microsoft.NETCore.App: 6.0.40, 8.0.6, 8.0.21, 9.0.6, 9.0.10
- Microsoft.WindowsDesktop.App: 8.0.6, 8.0.21, 9.0.6, 9.0.10
- nbgv 3.8.118+69b3e0b5a0
- Microsoft.AspNetCore.App: 6.0.39, 8.0.6, 8.0.19, 9.0.6, 9.0.8
- Microsoft.NETCore.App: 6.0.39, 8.0.6, 8.0.19, 9.0.6, 9.0.8
- Microsoft.WindowsDesktop.App: 8.0.6, 8.0.19, 9.0.6, 9.0.8
- nbgv 3.7.115+d31f50f4d1
### PowerShell Tools
- PowerShell 7.4.13
- PowerShell 7.4.11
#### Powershell Modules
- Az: 12.5.0
- AWSPowershell: 5.0.88
- AWSPowershell: 5.0.39
- DockerMsftProvider: 1.0.0.8
- MarkdownPS: 1.10
- Microsoft.Graph: 2.32.0
- Microsoft.Graph: 2.30.0
- Pester: 3.4.0, 5.7.1
- PowerShellGet: 1.0.0.1, 2.2.5
- PSScriptAnalyzer: 1.24.0
@@ -506,18 +508,18 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
- VSSetup: 2.2.16
### Android
| Package Name | Version |
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Android Command Line Tools | 8.0 |
| Android Emulator | 36.2.12 |
| Android SDK Build-tools | 36.0.0 36.1.0<br>35.0.0 35.0.1<br>34.0.0<br>33.0.0 33.0.1 33.0.2 33.0.3<br>32.0.0<br>31.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)<br>android-33-ext5 (rev 1)<br>android-33-ext4 (rev 1)<br>android-33 (rev 3)<br>android-32 (rev 1)<br>android-31 (rev 1) |
| Android SDK Platform-Tools | 36.0.0 |
| Android Support Repository | 47.0.0 |
| CMake | 3.18.1<br>3.22.1<br>3.31.5 |
| Google Play services | 49 |
| Google Repository | 58 |
| NDK | 26.3.11579264<br>27.3.13750724<br>28.2.13676358 |
| Package Name | Version |
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Android Command Line Tools | 8.0 |
| Android Emulator | 36.1.9 |
| Android SDK Build-tools | 36.0.0<br>35.0.0 35.0.1<br>34.0.0<br>33.0.0 33.0.1 33.0.2 33.0.3<br>32.0.0<br>31.0.0 |
| Android SDK Platforms | 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)<br>android-33-ext5 (rev 1)<br>android-33-ext4 (rev 1)<br>android-33 (rev 3)<br>android-32 (rev 1)<br>android-31 (rev 1) |
| Android SDK Platform-Tools | 36.0.0 |
| Android Support Repository | 47.0.0 |
| CMake | 3.18.1<br>3.22.1<br>3.31.5 |
| Google Play services | 49 |
| Google Repository | 58 |
| NDK | 26.3.11579264<br>27.3.13750724<br>28.2.13676358 |
#### Environment variables
| Name | Value |
@@ -532,9 +534,9 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
### Cached Docker images
| Repository:Tag | Digest | Created |
| ------------------------------------------------------------------------- | ------------------------------------------------------------------------ | ---------- |
| mcr.microsoft.com/dotnet/framework/aspnet:4.8-windowsservercore-ltsc2022 | sha256:ec04e733695f49a0dc9132184f6b06704866b34f422004093c1972512c86259e | 2025-09-09 |
| mcr.microsoft.com/dotnet/framework/runtime:4.8-windowsservercore-ltsc2022 | sha256:3983348680840ca6e53ad641e314c3c9184ca2fd19f88bc467600f7d9f6e9d73 | 2025-09-09 |
| mcr.microsoft.com/dotnet/framework/sdk:4.8-windowsservercore-ltsc2022 | sha256:460dedaed73224f73ff10dc3ad754d0ed250aa57bcdf6c5052a811b4b7e29345 | 2025-09-09 |
| mcr.microsoft.com/windows/nanoserver:ltsc2022 | sha256:307874138e4dc064d0538b58c6f028419ab82fb15fcabaf6d5378ba32c235266 | 2025-10-22 |
| mcr.microsoft.com/windows/servercore:ltsc2022 | sha256:f51004008a2017ce3905fe7e1985d5aff62e596c4ab4111caad6d3cf33aa5cf1 | 2025-10-22 |
| mcr.microsoft.com/dotnet/framework/aspnet:4.8-windowsservercore-ltsc2022 | sha256:b06372fdf2436467edcaea8526ff623e86af057be7ae2096166ee8c6d6f0a7f4 | 2025-08-12 |
| mcr.microsoft.com/dotnet/framework/runtime:4.8-windowsservercore-ltsc2022 | sha256:93b737c136a81a61b8a27f87ae9072bd649cd39d950dadffc899b663e54cce18 | 2025-08-12 |
| mcr.microsoft.com/dotnet/framework/sdk:4.8-windowsservercore-ltsc2022 | sha256:35fb40d7f9be74ac14c712e1e5d0064aee2fdb4bf3173450c7c634b725801d80 | 2025-08-12 |
| mcr.microsoft.com/windows/nanoserver:ltsc2022 | sha256:6b12945bd34dd80b9c3bca145948d32155f0c3657c567909c85bb829f6197755 | 2025-08-08 |
| mcr.microsoft.com/windows/servercore:ltsc2022 | sha256:d9e1a220c13cf25c7b213fbd96df2b63671e2dba0de3909003d4bb23a8bc8a1c | 2025-08-08 |
+315 -313
View File
@@ -1,40 +1,42 @@
| Announcements |
|-|
| [[Ubuntu & Windows] Four tools scheduled for deprecation on November 3, 2025](https://github.com/actions/runner-images/issues/12898) |
| [Windows-latest workflows will use Windows Server 2025 image in GH](https://github.com/actions/runner-images/issues/12677) |
| [[Windows-2022] Openssl version will be updated to version 3.5.2 on 2025-10-10](https://github.com/actions/runner-images/issues/12676) |
| [[Windows 2022] MongoDB 5.x version will be removed from Windows 2022 image on 2025-09-01 and will be updated to 7.x version.](https://github.com/actions/runner-images/issues/12640) |
***
# Windows Server 2025
- OS Version: 10.0.26100 Build 6905
- Image Version: 20251102.77.1
- OS Version: 10.0.26100 Build 4946
- Image Version: 20250825.1.0
## Windows features
- Windows Subsystem for Linux (WSLv1): Enabled
- Windows Subsystem for Linux (Default, WSLv2): 2.6.1.0
- Windows Subsystem for Linux (Default, WSLv2): 2.5.10.0
## Installed Software
### Language and Runtime
- Bash 5.2.37(1)-release
- Go 1.24.9
- Julia 1.12.0
- Kotlin 2.2.21
- Go 1.24.6
- Julia 1.11.6
- Kotlin 2.2.10
- LLVM 20.1.8
- Node 22.21.1
- Perl 5.42.0
- PHP 8.4.14
- Node 22.18.0
- Perl 5.40.2
- PHP 8.4.11
- Python 3.9.13
- Ruby 3.3.10
- Ruby 3.3.9
### Package Management
- Chocolatey 2.5.1
- Composer 2.8.12
- Helm 3.19.0
- Miniconda 25.9.1 (pre-installed on the image but not added to PATH)
- NPM 10.9.4
- Chocolatey 2.5.0
- Composer 2.8.11
- Helm 3.18.5
- Miniconda 25.7.0 (pre-installed on the image but not added to PATH)
- NPM 10.9.3
- NuGet 6.14.0.116
- pip 25.3 (python 3.9)
- Pipx 1.8.0
- pip 25.2 (python 3.9)
- Pipx 1.7.1
- RubyGems 3.5.22
- Vcpkg (build from commit e3ed41868d)
- Vcpkg (build from commit 6ecbbbdf31)
- Yarn 1.22.22
#### Environment variables
@@ -45,42 +47,41 @@
### Project Management
- Ant 1.10.15
- Gradle 9.1
- Gradle 9.0
- Maven 3.9.11
- sbt 1.11.7
- sbt 1.11.5
### Tools
- 7zip 25.01
- aria2 1.37.0
- azcopy 10.31.0
- Bazel 8.4.2
- azcopy 10.30.0
- Bazel 8.3.1
- Bazelisk 1.26.0
- Bicep 0.38.33
- Bicep 0.37.4
- Cabal 3.16.0.0
- CMake 3.31.6
- CodeQL Action Bundle 2.23.3
- CodeQL Action Bundle 2.22.4
- Docker 27.5.1
- Docker Compose v2 2.32.2
- Docker-wincred 0.9.4
- Docker-wincred 0.9.3
- ghc 9.12.2
- Git 2.51.2.windows.1
- Git LFS 3.7.1
- ImageMagick 7.1.2-8
- InnoSetup 6.5.4
- Git 2.51.0.windows.1
- Git LFS 3.7.0
- ImageMagick 7.1.2-1
- jq 1.8.1
- Kind 0.30.0
- Kubectl 1.34.1
- gcc 15.2.0
- gdb 16.3
- GNU Binutils 2.45
- Kind 0.29.0
- Kubectl 1.33.4
- gcc 14.2.0
- gdb 16.2
- GNU Binutils 2.44
- Newman 6.2.1
- OpenSSL 3.6.0
- Packer 1.14.2
- Pulumi 3.205.0
- R 4.5.2
- OpenSSL 3.5.2
- Packer 1.12.0
- Pulumi 3.191.0
- R 4.4.2
- Service Fabric SDK 10.1.2493.9590
- Stack 3.7.1
- Swig 4.3.1
- Swig 4.1.1
- VSWhere 3.1.7
- WinAppDriver 1.2.2009.02003
- WiX Toolset 3.14.1.8722
@@ -89,32 +90,32 @@
- Ninja 1.13.1
### CLI Tools
- AWS CLI 2.31.27
- AWS SAM CLI 1.145.2
- AWS CLI 2.28.16
- AWS SAM CLI 1.143.0
- AWS Session Manager CLI 1.2.707.0
- Azure CLI 2.78.0
- Azure CLI 2.76.0
- Azure DevOps CLI extension 1.0.2
- GitHub CLI 2.82.1
- GitHub CLI 2.78.0
### Rust Tools
- Cargo 1.91.0
- Rust 1.91.0
- Rustdoc 1.91.0
- Cargo 1.89.0
- Rust 1.89.0
- Rustdoc 1.89.0
- Rustup 1.28.2
#### Packages
- Clippy 0.1.91
- Clippy 0.1.89
- Rustfmt 1.8.0
### Browsers and Drivers
- Google Chrome 142.0.7444.60
- Chrome Driver 142.0.7444.59
- Microsoft Edge 142.0.3595.53
- Microsoft Edge Driver 142.0.3595.53
- Mozilla Firefox 144.0.2
- Google Chrome 139.0.7258.139
- Chrome Driver 139.0.7258.138
- Microsoft Edge 139.0.3405.111
- Microsoft Edge Driver 139.0.3405.111
- Mozilla Firefox 142.0
- Gecko Driver 0.36.0
- IE Driver 4.14.0.0
- Selenium server 4.38.0
- Selenium server 4.35.0
#### Environment variables
| Name | Value |
@@ -125,13 +126,12 @@
| SELENIUM_JAR_PATH | C:\selenium\selenium-server.jar |
### Java
| Version | Environment Variable |
| -------------------- | -------------------- |
| 8.0.472+8 | JAVA_HOME_8_X64 |
| 11.0.29+7 | JAVA_HOME_11_X64 |
| 17.0.17+10 (default) | JAVA_HOME_17_X64 |
| 21.0.9+10.0 | JAVA_HOME_21_X64 |
| 25.0.1+8.0 | JAVA_HOME_25_X64 |
| Version | Environment Variable |
| ------------------- | -------------------- |
| 8.0.462+8 | JAVA_HOME_8_X64 |
| 11.0.28+6 | JAVA_HOME_11_X64 |
| 17.0.16+8 (default) | JAVA_HOME_17_X64 |
| 21.0.8+9.0 | JAVA_HOME_21_X64 |
### Shells
| Name | Target |
@@ -155,295 +155,297 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
#### Go
- 1.22.12
- 1.23.12
- 1.24.9
- 1.25.3
- 1.24.6
#### Node.js
- 20.19.5
- 22.21.1
- 24.11.0
- 18.20.8
- 20.19.4
- 22.18.0
#### Python
- 3.9.13
- 3.10.11
- 3.11.9
- 3.12.10
- 3.13.9
- 3.14.0
- 3.13.7
#### PyPy
- 3.9.19 [PyPy 7.3.16]
- 3.10.16 [PyPy 7.3.19]
#### Ruby
- 3.1.7
- 3.2.9
- 3.3.10
- 3.4.7
- 3.3.9
- 3.4.5
### Databases
#### PostgreSQL
| Property | Value |
| -------------------- | ---------------------------------------------------------------------------------------------------------------------- |
| ServiceName | postgresql-x64-17 |
| Version | 17.6 |
| 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 |
| Path | C:\Program Files\PostgreSQL\17 |
| UserName | postgres |
| Password | root |
| Property | Value |
| -------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
| ServiceName | postgresql-x64-17 |
| Version | 17.6 |
| ServiceStatus | Stopped |
| ServiceStartType | Disabled |
| EnvironmentVariables | PGBIN=C:\Program Files\PostgreSQL\17\bin <br> PGDATA=C:\Program Files\PostgreSQL\17\data <br> PGROOT=C:\Program Files\PostgreSQL\17 |
| Path | C:\Program Files\PostgreSQL\17 |
| UserName | postgres |
| Password | root |
#### MongoDB
| Version | ServiceName | ServiceStatus | ServiceStartType |
| -------- | ----------- | ------------- | ---------------- |
| 7.0.25.0 | MongoDB | Stopped | Disabled |
| 7.0.23.0 | MongoDB | Stopped | Disabled |
### Database tools
- Azure CosmosDb Emulator 2.14.25.0
- DacFx 170.2.70.1
- MySQL 8.0.44.0
- SQL OLEDB Driver 18 18.7.5.0
- SQL OLEDB Driver 19 19.4.1.0
- Azure CosmosDb Emulator 2.14.24.0
- DacFx 170.1.61.1
- MySQL 8.0.43.0
- SQL OLEDB Driver 18.7.4.0
- SQLPS 1.0
- MongoDB Shell (mongosh) 2.5.9
- MongoDB Shell (mongosh) 2.5.6
### Web Servers
| Name | Version | ConfigFile | ServiceName | ServiceStatus | ListenPort |
| ------ | ------- | ------------------------------------- | ----------- | ------------- | ---------- |
| Apache | 2.4.55 | C:\tools\Apache24\conf\httpd.conf | Apache | Stopped | 80 |
| Nginx | 1.29.3 | C:\tools\nginx-1.29.3\conf\nginx.conf | nginx | Stopped | 80 |
| Nginx | 1.29.0 | C:\tools\nginx-1.29.0\conf\nginx.conf | nginx | Stopped | 80 |
### Visual Studio Enterprise 2022
| Name | Version | Path |
| ----------------------------- | ------------- | -------------------------------------------------------- |
| Visual Studio Enterprise 2022 | 17.14.36623.8 | C:\Program Files\Microsoft Visual Studio\2022\Enterprise |
| Name | Version | Path |
| ----------------------------- | -------------- | -------------------------------------------------------- |
| Visual Studio Enterprise 2022 | 17.14.36414.22 | C:\Program Files\Microsoft Visual Studio\2022\Enterprise |
#### Workloads, components and extensions
| Package | Version |
| ------------------------------------------------------------------------- | --------------- |
| android | 35.0.78.0 |
| Component.Android.NDK.R23C | 17.14.36510.44 |
| Component.Android.SDK.MAUI | 17.14.36510.44 |
| Component.Dotfuscator | 17.14.36510.44 |
| Component.Linux.CMake | 17.14.36510.44 |
| Component.Linux.RemoteFileExplorer | 17.14.36510.44 |
| Component.MDD.Android | 17.14.36510.44 |
| Component.MDD.Linux | 17.14.36510.44 |
| Component.MDD.Linux.GCC.arm | 17.14.36510.44 |
| Component.Microsoft.VisualStudio.RazorExtension | 17.14.36510.44 |
| Component.Microsoft.VisualStudio.Tools.Applications.amd64 | 17.0.36522.0 |
| Component.Microsoft.VisualStudio.Web.AzureFunctions | 17.14.36510.44 |
| Component.Microsoft.Web.LibraryManager | 17.14.36510.44 |
| Component.Android.NDK.R23C | 17.14.36015.10 |
| Component.Android.SDK.MAUI | 17.14.36015.10 |
| Component.Dotfuscator | 17.14.36015.10 |
| Component.Linux.CMake | 17.14.36108.8 |
| Component.Linux.RemoteFileExplorer | 17.14.36108.8 |
| Component.MDD.Android | 17.14.36015.10 |
| Component.MDD.Linux | 17.14.36108.8 |
| Component.MDD.Linux.GCC.arm | 17.14.36015.10 |
| Component.Microsoft.VisualStudio.LiveShare.2022 | 1.0.5949 |
| Component.Microsoft.VisualStudio.RazorExtension | 17.14.36015.10 |
| Component.Microsoft.VisualStudio.Tools.Applications.amd64 | 17.0.35906.1 |
| Component.Microsoft.VisualStudio.Web.AzureFunctions | 17.14.36015.10 |
| Component.Microsoft.Web.LibraryManager | 17.14.36015.10 |
| Component.Microsoft.WebTools.BrowserLink.WebLivePreview | 17.14.2.50506 |
| Component.Microsoft.Windows.DriverKit | 10.0.26100.12 |
| Component.OpenJDK | 17.14.36510.44 |
| Component.UnityEngine.x64 | 17.14.36510.44 |
| Component.Unreal.Debugger | 17.14.36510.44 |
| Component.Unreal.Ide | 17.14.36510.44 |
| Component.VisualStudio.GitHub.Copilot | 17.14.36621.7 |
| Component.OpenJDK | 17.14.36015.10 |
| Component.UnityEngine.x64 | 17.14.36015.10 |
| Component.Unreal.Debugger | 17.14.36015.10 |
| Component.Unreal.Ide | 17.14.36015.10 |
| Component.VisualStudio.GitHub.Copilot | 17.14.36414.12 |
| Component.VSInstallerProjects2022 | 2.0.1 |
| Component.WixToolset.VisualStudioExtension.Dev17 | 1.0.0.22 |
| Component.WixToolset.VisualStudioExtension.Schemas3 | 1.0.0.22 |
| ComponentGroup.Microsoft.NET.AppModernization | 17.14.36614.33 |
| ios | 26.0.9752.0 |
| maccatalyst | 26.0.9752.0 |
| maui.blazor | 9.0.111.6930 |
| maui.core | 9.0.111.6930 |
| maui.windows | 9.0.111.6930 |
| Microsoft.Component.Azure.DataLake.Tools | 17.14.36510.44 |
| Microsoft.Component.ClickOnce | 17.14.36510.44 |
| Microsoft.Component.CodeAnalysis.SDK | 17.14.36510.44 |
| Microsoft.Component.MSBuild | 17.14.36510.44 |
| Microsoft.Component.NetFX.Native | 17.14.36510.44 |
| Microsoft.Component.PythonTools | 17.14.36510.44 |
| Microsoft.Component.PythonTools.Web | 17.14.36510.44 |
| Microsoft.Component.VC.Runtime.UCRTSDK | 17.14.36510.44 |
| Microsoft.ComponentGroup.Blend | 17.14.36510.44 |
| Microsoft.ComponentGroup.ClickOnce.Publish | 17.14.36510.44 |
| Microsoft.Net.Component.4.5.2.TargetingPack | 17.14.36510.44 |
| Microsoft.Net.Component.4.6.2.TargetingPack | 17.14.36510.44 |
| Microsoft.Net.Component.4.6.TargetingPack | 17.14.36510.44 |
| Microsoft.Net.Component.4.7.1.TargetingPack | 17.14.36510.44 |
| Microsoft.Net.Component.4.7.2.TargetingPack | 17.14.36510.44 |
| Microsoft.Net.Component.4.7.TargetingPack | 17.14.36510.44 |
| Microsoft.Net.Component.4.8.1.SDK | 17.14.36510.44 |
| Microsoft.Net.Component.4.8.1.TargetingPack | 17.14.36510.44 |
| Microsoft.Net.Component.4.8.SDK | 17.14.36510.44 |
| Microsoft.Net.Component.4.8.TargetingPack | 17.14.36510.44 |
| Microsoft.Net.ComponentGroup.4.8.DeveloperTools | 17.14.36510.44 |
| Microsoft.Net.ComponentGroup.DevelopmentPrerequisites | 17.14.36510.44 |
| Microsoft.Net.ComponentGroup.TargetingPacks.Common | 17.14.36510.44 |
| microsoft.net.runtime.android | 9.0.1025.47515 |
| microsoft.net.runtime.android.aot | 9.0.1025.47515 |
| microsoft.net.runtime.android.aot.net8 | 9.0.1025.47515 |
| microsoft.net.runtime.android.net8 | 9.0.1025.47515 |
| microsoft.net.runtime.ios | 9.0.1025.47515 |
| microsoft.net.runtime.maccatalyst | 9.0.1025.47515 |
| microsoft.net.runtime.mono.tooling | 9.0.1025.47515 |
| microsoft.net.runtime.mono.tooling.net8 | 9.0.1025.47515 |
| microsoft.net.sdk.emscripten | 9.0.12.46904 |
| Microsoft.NetCore.Component.DevelopmentTools | 17.14.36510.44 |
| Microsoft.NetCore.Component.Runtime.8.0 | 17.14.36602.14 |
| Microsoft.NetCore.Component.Runtime.9.0 | 17.14.36602.14 |
| Microsoft.NetCore.Component.SDK | 17.14.36602.14 |
| Microsoft.NetCore.Component.Web | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.AppInsights.Tools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.AspNet | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.AspNet45 | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Azure.AuthoringTools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Azure.ClientLibs | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Azure.Compute.Emulator | 17.14.36517.7 |
| Microsoft.VisualStudio.Component.Azure.ResourceManager.Tools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Azure.ServiceFabric.Tools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Azure.Waverton | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Azure.Waverton.BuildTools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.ClassDesigner | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.CodeMap | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Common.Azure.Tools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.CoreEditor | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.CppBuildInsights | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Debugger.JustInTime | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.DiagnosticTools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.DockerTools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.DotNetModelBuilder | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.DslTools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Embedded | 17.14.36517.7 |
| Microsoft.VisualStudio.Component.EntityFramework | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.FSharp | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.FSharp.Desktop | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.FSharp.WebTemplates | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.GraphDocument | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Graphics | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Graphics.Tools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.HLSL | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.IISExpress | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.IntelliCode | 17.14.36621.7 |
| Microsoft.VisualStudio.Component.IntelliTrace.FrontEnd | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.JavaScript.Diagnostics | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.JavaScript.TypeScript | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.LinqToSql | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.LiveUnitTesting | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.ManagedDesktop.Core | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.ManagedDesktop.Prerequisites | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.MSODBC.SQL | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.MSSQL.CMDLnUtils | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Node.Tools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.NuGet | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.NuGet.BuildTools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.PortableLibrary | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Roslyn.Compiler | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Roslyn.LanguageServices | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Sharepoint.Tools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.SQL.CLR | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.SQL.DataSources | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.SQL.LocalDB.Runtime | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.SQL.SSDT | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.TeamOffice | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.TestTools.CodedUITest | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.TestTools.WebLoadTest | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.TextTemplating | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.TypeScript.TSServer | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Unity | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.UWP.VC.ARM64 | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.UWP.VC.ARM64EC | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM64 | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.ASAN | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.ATL | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.ATL.ARM | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.ATL.ARM.Spectre | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.ATL.ARM64 | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.ATL.ARM64.Spectre | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.ATL.Spectre | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.ATLMFC | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.ATLMFC.Spectre | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.CLI.Support | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.CMake.Project | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.CoreIde | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.DiagnosticTools | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Llvm.Clang | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.MFC.ARM | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.MFC.ARM.Spectre | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.MFC.ARM64 | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.MFC.ARM64.Spectre | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Modules.x86.x64 | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Redist.14.Latest | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Redist.MSM | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM.Spectre | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM64.Spectre | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM64EC.Spectre | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Runtimes.x86.x64.Spectre | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.TestAdapterForBoostTest | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.TestAdapterForGoogleTest | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Tools.ARM | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Tools.ARM64 | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Tools.ARM64EC | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VC.Tools.x86.x64 | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Vcpkg | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.VSSDK | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Wcf.Tooling | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Web | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.WebDeploy | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Windows10SDK | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Windows11SDK.26100 | 17.14.36614.30 |
| Microsoft.VisualStudio.Component.Windows11Sdk.WindowsPerformanceToolkit | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.WindowsAppSdkSupport.CSharp | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.Workflow | 17.14.36510.44 |
| Microsoft.VisualStudio.Component.WslDebugging | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.ArchitectureTools.Native | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.Azure.CloudServices | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.Azure.Prerequisites | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.Azure.ResourceManager.Tools | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.AzureFunctions | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.Maui.All | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.Maui.Android | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.Maui.Blazor | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.Maui.iOS | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.Maui.MacCatalyst | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.Maui.Shared | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.Maui.Windows | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.MSIX.Packaging | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Llvm.Clang | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.UWP.NetCoreAndStandard | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.UWP.VC.v142 | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.VC.Tools.142.x86.x64 | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.VisualStudioExtension.Prerequisites | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.Web | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.Web.CloudTools | 17.14.36614.30 |
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.CMake | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.TemplateEngine | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.WindowsAppDevelopment.Prerequisites | 17.14.36510.44 |
| Microsoft.VisualStudio.ComponentGroup.WindowsAppSDK.Cs | 17.14.36510.44 |
| Microsoft.VisualStudio.Workload.Azure | 17.14.36518.2 |
| ios | 18.5.9214.0 |
| maccatalyst | 18.5.9214.0 |
| maui.blazor | 9.0.82.6628 |
| maui.core | 9.0.82.6628 |
| maui.windows | 9.0.82.6628 |
| Microsoft.Component.Azure.DataLake.Tools | 17.14.36015.10 |
| Microsoft.Component.ClickOnce | 17.14.36015.10 |
| Microsoft.Component.CodeAnalysis.SDK | 17.14.36015.10 |
| Microsoft.Component.MSBuild | 17.14.36015.10 |
| Microsoft.Component.NetFX.Native | 17.14.36015.10 |
| Microsoft.Component.PythonTools | 17.14.36015.10 |
| Microsoft.Component.PythonTools.Web | 17.14.36015.10 |
| Microsoft.Component.VC.Runtime.UCRTSDK | 17.14.36015.10 |
| Microsoft.ComponentGroup.Blend | 17.14.36015.10 |
| Microsoft.ComponentGroup.ClickOnce.Publish | 17.14.36015.10 |
| Microsoft.Net.Component.4.5.2.TargetingPack | 17.14.36015.10 |
| Microsoft.Net.Component.4.6.2.TargetingPack | 17.14.36015.10 |
| Microsoft.Net.Component.4.6.TargetingPack | 17.14.36015.10 |
| Microsoft.Net.Component.4.7.1.TargetingPack | 17.14.36015.10 |
| Microsoft.Net.Component.4.7.2.TargetingPack | 17.14.36015.10 |
| Microsoft.Net.Component.4.7.TargetingPack | 17.14.36015.10 |
| Microsoft.Net.Component.4.8.1.SDK | 17.14.36015.10 |
| Microsoft.Net.Component.4.8.1.TargetingPack | 17.14.36015.10 |
| Microsoft.Net.Component.4.8.SDK | 17.14.36015.10 |
| Microsoft.Net.Component.4.8.TargetingPack | 17.14.36015.10 |
| Microsoft.Net.ComponentGroup.4.8.DeveloperTools | 17.14.36015.10 |
| Microsoft.Net.ComponentGroup.DevelopmentPrerequisites | 17.14.36015.10 |
| Microsoft.Net.ComponentGroup.TargetingPacks.Common | 17.14.36015.10 |
| microsoft.net.runtime.android | 9.0.825.36511 |
| microsoft.net.runtime.android.aot | 9.0.825.36511 |
| microsoft.net.runtime.android.aot.net8 | 9.0.825.36511 |
| microsoft.net.runtime.android.net8 | 9.0.825.36511 |
| microsoft.net.runtime.ios | 9.0.825.36511 |
| microsoft.net.runtime.ios.net8 | 9.0.825.36511 |
| microsoft.net.runtime.maccatalyst | 9.0.825.36511 |
| microsoft.net.runtime.maccatalyst.net8 | 9.0.825.36511 |
| microsoft.net.runtime.mono.tooling | 9.0.825.36511 |
| microsoft.net.runtime.mono.tooling.net8 | 9.0.825.36511 |
| microsoft.net.sdk.emscripten | 9.0.12.35301 |
| Microsoft.NetCore.Component.DevelopmentTools | 17.14.36015.10 |
| Microsoft.NetCore.Component.Runtime.8.0 | 17.14.36331.10 |
| Microsoft.NetCore.Component.Runtime.9.0 | 17.14.36331.10 |
| Microsoft.NetCore.Component.SDK | 17.14.36331.10 |
| Microsoft.NetCore.Component.Web | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.AppInsights.Tools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.AspNet | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.AspNet45 | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Azure.AuthoringTools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Azure.ClientLibs | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Azure.Compute.Emulator | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Azure.ResourceManager.Tools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Azure.ServiceFabric.Tools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Azure.Waverton | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Azure.Waverton.BuildTools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.ClassDesigner | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.CodeMap | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Common.Azure.Tools | 17.14.36024.20 |
| Microsoft.VisualStudio.Component.CoreEditor | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.CppBuildInsights | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Debugger.JustInTime | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.DiagnosticTools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.DockerTools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.DotNetModelBuilder | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.DslTools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Embedded | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.EntityFramework | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.FSharp | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.FSharp.Desktop | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.FSharp.WebTemplates | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.GraphDocument | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Graphics | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Graphics.Tools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.HLSL | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.IISExpress | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.IntelliCode | 17.14.36414.12 |
| Microsoft.VisualStudio.Component.IntelliTrace.FrontEnd | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.JavaScript.Diagnostics | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.JavaScript.TypeScript | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.LinqToSql | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.LiveUnitTesting | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.ManagedDesktop.Core | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.ManagedDesktop.Prerequisites | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.MSODBC.SQL | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.MSSQL.CMDLnUtils | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Node.Tools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.NuGet | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.NuGet.BuildTools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.PortableLibrary | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Roslyn.Compiler | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Roslyn.LanguageServices | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Sharepoint.Tools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.SQL.CLR | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.SQL.DataSources | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.SQL.LocalDB.Runtime | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.SQL.SSDT | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.TeamOffice | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.TestTools.CodedUITest | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.TestTools.WebLoadTest | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.TextTemplating | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.TypeScript.TSServer | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Unity | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.UWP.VC.ARM64 | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.UWP.VC.ARM64EC | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM64 | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.ASAN | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.ATL | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.ATL.ARM | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.ATL.ARM.Spectre | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.ATL.ARM64 | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.ATL.ARM64.Spectre | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.ATL.Spectre | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.ATLMFC | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.ATLMFC.Spectre | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.CLI.Support | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.CMake.Project | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.CoreIde | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.DiagnosticTools | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Llvm.Clang | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.MFC.ARM | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.MFC.ARM.Spectre | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.MFC.ARM64 | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.MFC.ARM64.Spectre | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Modules.x86.x64 | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Redist.14.Latest | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Redist.MSM | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM.Spectre | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM64.Spectre | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM64EC.Spectre | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Runtimes.x86.x64.Spectre | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.TestAdapterForBoostTest | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.TestAdapterForGoogleTest | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Tools.ARM | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Tools.ARM64 | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Tools.ARM64EC | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VC.Tools.x86.x64 | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Vcpkg | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.VSSDK | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Wcf.Tooling | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Web | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.WebDeploy | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Windows10SDK | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Windows11SDK.26100 | 17.14.36414.12 |
| Microsoft.VisualStudio.Component.Windows11Sdk.WindowsPerformanceToolkit | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.WindowsAppSdkSupport.CSharp | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.Workflow | 17.14.36015.10 |
| Microsoft.VisualStudio.Component.WslDebugging | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.ArchitectureTools.Native | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.Azure.CloudServices | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.Azure.Prerequisites | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.Azure.ResourceManager.Tools | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.AzureFunctions | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.Maui.All | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.Maui.Android | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.Maui.Blazor | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.Maui.iOS | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.Maui.MacCatalyst | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.Maui.Shared | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.Maui.Windows | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.MSIX.Packaging | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Llvm.Clang | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.UWP.NetCoreAndStandard | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.UWP.VC.v142 | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.VC.Tools.142.x86.x64 | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.VisualStudioExtension.Prerequisites | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.Web | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.Web.CloudTools | 17.14.36322.40 |
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.CMake | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.TemplateEngine | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.WindowsAppDevelopment.Prerequisites | 17.14.36015.10 |
| Microsoft.VisualStudio.ComponentGroup.WindowsAppSDK.Cs | 17.14.36015.10 |
| Microsoft.VisualStudio.Workload.Azure | 17.14.36322.40 |
| Microsoft.VisualStudio.Workload.CoreEditor | 17.14.36015.10 |
| Microsoft.VisualStudio.Workload.Data | 17.14.36015.10 |
| Microsoft.VisualStudio.Workload.DataScience | 17.14.36015.10 |
| Microsoft.VisualStudio.Workload.ManagedDesktop | 17.14.36518.2 |
| Microsoft.VisualStudio.Workload.ManagedDesktop | 17.14.36015.10 |
| Microsoft.VisualStudio.Workload.ManagedGame | 17.14.36301.6 |
| Microsoft.VisualStudio.Workload.NativeCrossPlat | 17.14.36526.15 |
| Microsoft.VisualStudio.Workload.NativeDesktop | 17.14.36517.7 |
| Microsoft.VisualStudio.Workload.NativeCrossPlat | 17.14.36108.8 |
| Microsoft.VisualStudio.Workload.NativeDesktop | 17.14.36331.10 |
| Microsoft.VisualStudio.Workload.NativeGame | 17.14.36331.10 |
| Microsoft.VisualStudio.Workload.NativeMobile | 17.14.36015.10 |
| Microsoft.VisualStudio.Workload.NetCrossPlat | 17.14.36518.2 |
| Microsoft.VisualStudio.Workload.NetWeb | 17.14.36518.2 |
| Microsoft.VisualStudio.Workload.Node | 17.14.36517.7 |
| Microsoft.VisualStudio.Workload.NetCrossPlat | 17.14.36015.10 |
| Microsoft.VisualStudio.Workload.NetWeb | 17.14.36015.10 |
| Microsoft.VisualStudio.Workload.Node | 17.14.36015.10 |
| Microsoft.VisualStudio.Workload.Office | 17.14.36015.10 |
| Microsoft.VisualStudio.Workload.Python | 17.14.36015.10 |
| Microsoft.VisualStudio.Workload.Universal | 17.14.36331.10 |
| Microsoft.VisualStudio.Workload.VisualStudioExtension | 17.14.36015.10 |
| runtimes.ios | 9.0.1025.47515 |
| runtimes.maccatalyst | 9.0.1025.47515 |
| wasm.tools | 9.0.1025.47515 |
| runtimes.ios | 9.0.825.36511 |
| runtimes.ios.net8 | 9.0.825.36511 |
| runtimes.maccatalyst | 9.0.825.36511 |
| runtimes.maccatalyst.net8 | 9.0.825.36511 |
| wasm.tools | 9.0.825.36511 |
| ProBITools.MicrosoftAnalysisServicesModelingProjects2022 | 3.0.4 |
| ProBITools.MicrosoftReportProjectsforVisualStudio2022 | 3.0.1 |
| SSIS.MicrosoftDataToolsIntegrationServices | 2.0 |
| SSIS.MicrosoftDataToolsIntegrationServices | 1.6.2 |
| VisualStudioClient.MicrosoftVisualStudio2022InstallerProjects | 2.0.1 |
| Windows Driver Kit Visual Studio Extension | 10.0.26100.12 |
| Windows Software Development Kit | 10.1.26100.6584 |
| Windows Software Development Kit | 10.1.26100.4654 |
| WixToolset.WixToolsetVisualStudio2022Extension | 1.0.0.22 |
#### Microsoft Visual C++
@@ -462,22 +464,22 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
- 10.0.26100.0
### .NET Core Tools
- .NET Core SDK: 8.0.121, 8.0.206, 8.0.318, 8.0.415, 9.0.111, 9.0.205, 9.0.306
- .NET Core SDK: 8.0.119, 8.0.206, 8.0.316, 8.0.413, 9.0.109, 9.0.205, 9.0.304
- .NET Framework: 4.8, 4.8.1
- Microsoft.AspNetCore.App: 8.0.6, 8.0.21, 9.0.6, 9.0.10
- Microsoft.NETCore.App: 8.0.6, 8.0.21, 9.0.6, 9.0.10
- Microsoft.WindowsDesktop.App: 8.0.6, 8.0.21, 9.0.6, 9.0.10
- nbgv 3.8.118+69b3e0b5a0
- Microsoft.AspNetCore.App: 8.0.6, 8.0.19, 9.0.6, 9.0.8
- Microsoft.NETCore.App: 8.0.6, 8.0.19, 9.0.6, 9.0.8
- Microsoft.WindowsDesktop.App: 8.0.6, 8.0.19, 9.0.6, 9.0.8
- nbgv 3.7.115+d31f50f4d1
### PowerShell Tools
- PowerShell 7.4.13
- PowerShell 7.4.11
#### Powershell Modules
- Az: 12.5.0
- AWSPowershell: 5.0.88
- AWSPowershell: 5.0.39
- DockerMsftProvider: 1.0.0.8
- MarkdownPS: 1.10
- Microsoft.Graph: 2.32.0
- Microsoft.Graph: 2.30.0
- Pester: 3.4.0, 5.7.1
- PowerShellGet: 1.0.0.1, 2.2.5
- PSScriptAnalyzer: 1.24.0
@@ -486,18 +488,18 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
- VSSetup: 2.2.16
### Android
| Package Name | Version |
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Android Command Line Tools | 16.0 |
| Android Emulator | 36.2.12 |
| 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.0 |
| Android Support Repository | 47.0.0 |
| CMake | 3.22.1<br>3.30.5<br>3.31.5 |
| Google Play services | 49 |
| Google Repository | 58 |
| NDK | 26.3.11579264<br>27.3.13750724<br>28.2.13676358 |
| Package Name | Version |
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Android Command Line Tools | 16.0 |
| Android Emulator | 36.1.9 |
| Android SDK Build-tools | 36.0.0<br>35.0.0 35.0.1<br>34.0.0 |
| Android SDK Platforms | 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.0 |
| Android Support Repository | 47.0.0 |
| CMake | 3.22.1<br>3.30.5<br>3.31.5 |
| Google Play services | 49 |
| Google Repository | 58 |
| NDK | 26.3.11579264<br>27.3.13750724<br>28.2.13676358 |
#### Environment variables
| Name | Value |
@@ -7,7 +7,7 @@
$toolsetContent = Get-ToolsetContent
$toolsetVersion = $toolsetContent.mongodb.version
$getMongoReleases = Invoke-WebRequest -Uri "mongodb.com/docs/v$toolsetVersion/release-notes/$toolsetVersion/" -UseBasicParsing
$getMongoReleases = Invoke-WebRequest -Uri "mongodb.com/docs/manual/release-notes/$toolsetVersion/" -UseBasicParsing
$targetReleases = $getMongoReleases.Links.href | Where-Object { $_ -like "#$toolsetVersion*---*" }
$minorVersions = @()
@@ -39,18 +39,19 @@ $mongodbService.WaitForStatus('Running', '00:01:00')
Stop-Service $mongodbService
$mongodbService | Set-Service -StartupType Disabled
# Install mongodb shell for mongodb
$mongoshVersion = (Get-GithubReleasesByVersion -Repo "mongodb-js/mongosh" -Version "latest").version
# Install mongodb shell for mongodb > 5 version
if (Test-IsWin25) {
$mongoshVersion = (Get-GithubReleasesByVersion -Repo "mongodb-js/mongosh" -Version "latest").version
$mongoshDownloadUrl = Resolve-GithubReleaseAssetUrl `
-Repo "mongodb-js/mongosh" `
-Version $mongoshVersion `
-UrlMatchPattern "mongosh-*-x64.msi"
Install-Binary -Type MSI `
-Url $mongoshDownloadUrl `
-ExtraInstallArgs @('ALLUSERS=1') `
-ExpectedSubject 'CN="MongoDB, Inc.", O="MongoDB, Inc.", L=New York, S=New York, C=US'
$mongoshDownloadUrl = Resolve-GithubReleaseAssetUrl `
-Repo "mongodb-js/mongosh" `
-Version $mongoshVersion `
-UrlMatchPattern "mongosh-*-x64.msi"
Install-Binary -Type MSI `
-Url $mongoshDownloadUrl `
-ExtraInstallArgs @('ALLUSERS=1') `
-ExpectedSubject 'CN="MongoDB, Inc.", O="MongoDB, Inc.", L=New York, S=New York, C=US'
}
Invoke-PesterTests -TestFile "Databases" -TestName "MongoDB"
@@ -22,7 +22,7 @@ $installerHash = $null
foreach ($key in $installerNames) {
$installer = $installersAvailable.$key
if (($installer.light -eq $light) -and ($installer.arch -eq $arch) -and ($installer.bits -eq $bits) -and ($installer.installer -eq $installerType) -and ($installer.basever -like $version)) {
if (($installer.light -eq $light) -and ($installer.arch -eq $arch) -and ($installer.bits -eq $bits) -and ($installer.installer -eq $installerType) -and ($installer.basever -eq $version)) {
$installerUrl = $installer.url
$installerHash = $installer.sha512
}
@@ -34,7 +34,7 @@ if ($null -eq $installerUrl) {
Install-Binary `
-Url $installerUrl `
-InstallArgs @('/silent', '/sp-', '/suppressmsgboxes','/tasks="copytobin"', "/DIR=`"$installDir`"") `
-InstallArgs @('/silent', '/sp-', '/suppressmsgboxes', "/DIR=`"$installDir`"") `
-ExpectedSHA512Sum $installerHash
# Update PATH
@@ -5,10 +5,7 @@
# Define user and password for PostgreSQL database
$pgUser = "postgres"
$pgPwd = "root"
# Save current value of ErrorActionPreference and set it to Stop
$errorActionOldValue = $ErrorActionPreference
$pgPwd = "root"
# Prepare environment variable for validation
[Environment]::SetEnvironmentVariable("PGUSER", $pgUser, "Machine")
@@ -38,6 +35,7 @@ if ($null -ne ($toolsetVersion | Select-String -Pattern '\d+\.\d+\.\d+')) {
$targetMinorVersions = ($minorVersions | Sort-Object)[-1]
# In order to get rid of error messages (we know we will have them), force ErrorAction to SilentlyContinue
$errorActionOldValue = $ErrorActionPreference
$ErrorActionPreference = 'SilentlyContinue'
# Install latest PostgreSQL
@@ -60,27 +58,10 @@ if ($null -ne ($toolsetVersion | Select-String -Pattern '\d+\.\d+\.\d+')) {
} while (!$response)
}
# Return the previous value of ErrorAction and invoke Install-Binary function
$ErrorActionPreference = $errorActionOldValue
# Define new data directory for PostgreSQL and create it
if ($installerUrl -match 'postgresql-(\d+)') {
$pgMajorVersion = $matches[1]
}
$pgData = "C:\PostgreSQL\$pgMajorVersion\data"
if (-Not (Test-Path -Path $pgData)) {
New-Item -ItemType Directory -Path $pgData | Out-Null
}
# Define silent install arguments for PostgreSQL
$installerArgs = @(
"--install_runtimes 0",
"--superpassword root",
"--enable_acledit 1",
"--unattendedmodeui none",
"--mode unattended",
"--datadir `"$pgData`""
)
$installerArgs = @("--install_runtimes 0", "--superpassword root", "--enable_acledit 1", "--unattendedmodeui none", "--mode unattended")
Install-Binary `
-Url $installerUrl `
@@ -93,7 +74,8 @@ $pgPath = (Get-CimInstance Win32_Service -Filter "Name LIKE 'postgresql-%'").Pat
# Parse output of command above to obtain pure path
$pgBin = Split-Path -Path $pgPath.split('"')[1]
$pgRoot = Split-Path $pgBin -Parent
$pgRoot = Split-Path -Path $pgPath.split('"')[5]
$pgData = Join-Path $pgRoot "data"
# Validate PostgreSQL installation
$pgReadyPath = Join-Path $pgBin "pg_isready.exe"
@@ -3,14 +3,7 @@
## Desc: Install OLE DB Driver for SQL Server
################################################################################
# Install OLE DB Driver 18
Install-Binary -Type MSI `
-Url "https://go.microsoft.com/fwlink/?linkid=2242656" `
-ExtraInstallArgs @("ADDLOCAL=ALL", "IACCEPTMSOLEDBSQLLICENSETERMS=YES") `
-ExpectedSubject $(Get-MicrosoftPublisher)
# Install OLE DB Driver 19
Install-Binary -Type MSI `
-Url "https://go.microsoft.com/fwlink/?linkid=2318101" `
-ExtraInstallArgs @("ADDLOCAL=ALL", "IACCEPTMSOLEDBSQLLICENSETERMS=YES") `
-ExpectedSubject $(Get-MicrosoftPublisher)
@@ -83,7 +83,9 @@ if (Test-IsWin19) {
$tools.AddToolVersion("Google Cloud CLI", $(Get-GoogleCloudCLIVersion))
}
$tools.AddToolVersion("ImageMagick", $(Get-ImageMagickVersion))
$tools.AddToolVersion("InnoSetup", $(Get-InnoSetupVersion))
if (-not (Test-IsWin25)) {
$tools.AddToolVersion("InnoSetup", $(Get-InnoSetupVersion))
}
$tools.AddToolVersion("jq", $(Get-JQVersion))
$tools.AddToolVersion("Kind", $(Get-KindVersion))
$tools.AddToolVersion("Kubectl", $(Get-KubectlVersion))
@@ -191,11 +193,11 @@ $databaseTools = $installedSoftware.AddHeader("Database tools")
$databaseTools.AddToolVersion("Azure CosmosDb Emulator", $(Get-AzCosmosDBEmulatorVersion))
$databaseTools.AddToolVersion("DacFx", $(Get-DacFxVersion))
$databaseTools.AddToolVersion("MySQL", $(Get-MySQLVersion))
$databaseTools.AddToolVersion("SQL OLEDB Driver 18", $(Get-SQLOLEDBDriver18Version))
$databaseTools.AddToolVersion("SQL OLEDB Driver 19", $(Get-SQLOLEDBDriver19Version))
$databaseTools.AddToolVersion("SQL OLEDB Driver", $(Get-SQLOLEDBDriverVersion))
$databaseTools.AddToolVersion("SQLPS", $(Get-SQLPSVersion))
$databaseTools.AddToolVersion("MongoDB Shell (mongosh)", $(Get-MongoshVersion))
if (Test-IsWin25) {
$databaseTools.AddToolVersion("MongoDB Shell (mongosh)", $(Get-MongoshVersion))
}
# Web Servers
$installedSoftware.AddHeader("Web Servers").AddTable($(Build-WebServersSection))
@@ -21,7 +21,11 @@ function Get-PostgreSQLTable
function Get-MongoDBTable
{
$name = "MongoDB"
$command = "mongod"
if (Test-IsWin25) {
$command = "mongod"
} else {
$command = "mongo"
}
$mongoService = Get-Service -Name $name
$mongoVersion = (Get-Command -Name $command).Version.ToString()
return [PSCustomObject]@{
@@ -121,16 +121,11 @@ function Get-MySQLVersion {
return $mysqlVersion
}
function Get-SQLOLEDBDriver18Version {
function Get-SQLOLEDBDriverVersion {
$SQLOLEDBDriverVersion = (Get-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSOLEDBSQL' InstalledVersion).InstalledVersion
return $SQLOLEDBDriverVersion
}
function Get-SQLOLEDBDriver19Version {
$SQLOLEDBDriverVersion = (Get-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSOLEDBSQL19' InstalledVersion).InstalledVersion
return $SQLOLEDBDriverVersion
}
function Get-MercurialVersion {
($(hg --version) | Out-String) -match "version (?<version>\d+\.\d+\.?\d*)" | Out-Null
$mercurialVersion = $Matches.Version
@@ -28,7 +28,7 @@ Describe "GitVersion" -Skip:(-not (Test-IsWin19)) {
}
}
Describe "InnoSetup" {
Describe "InnoSetup" -Skip:(Test-IsWin25) {
It "InnoSetup" {
(Get-Command -Name iscc).CommandType | Should -BeExactly "Application"
}
@@ -1,7 +1,11 @@
Describe "MongoDB" {
Context "Version" {
It "<ToolName>" -TestCases @(
@{ ToolName = "mongos" }
if (Test-IsWin25) {
@{ ToolName = "mongos" }
} else {
@{ ToolName = "mongo" }
}
@{ ToolName = "mongod" }
) {
$toolsetVersion = (Get-ToolsetContent).mongodb.version
@@ -26,7 +30,7 @@ Describe "MongoDB" {
}
}
Context "Shell" {
Context "Shell" -Skip:(-not (Test-IsWin25)) {
It "mongosh" {
"mongosh --version" | Should -ReturnZeroExitCode
}
+1 -10
View File
@@ -213,13 +213,9 @@ Describe "Kotlin" {
}
Describe "SQL OLEDB Driver" {
It "SQL OLEDB Driver 18" {
It "SQL OLEDB Driver" {
"HKLM:\SOFTWARE\Microsoft\MSOLEDBSQL" | Should -Exist
}
It "SQL OLEDB Driver 19" {
"HKLM:\SOFTWARE\Microsoft\MSOLEDBSQL19" | Should -Exist
}
}
Describe "OpenSSL" {
@@ -235,9 +231,4 @@ Describe "OpenSSL" {
It "OpenSSL Full package" {
Join-Path ${env:ProgramFiles} 'OpenSSL\include' | Should -Exist
}
It "OpenSSL DLLs not in System32" {
Get-ChildItem -Path "$env:SystemRoot\System32" -Filter "libcrypto-*.dll" -File -ErrorAction SilentlyContinue | Should -BeNullOrEmpty
Get-ChildItem -Path "$env:SystemRoot\System32" -Filter "libssl-*.dll" -File -ErrorAction SilentlyContinue | Should -BeNullOrEmpty
}
}
@@ -20,12 +20,11 @@ Describe "WindowsFeatures" {
}
Describe "DiskSpace" {
It "The image has enough disk space" {
$diskInfo = Get-PSDrive -Name C
$totalSpaceGB = [math]::Floor(($diskInfo.Used + $diskInfo.Free) / 1GB)
$freeSpaceGB = [math]::Floor($diskInfo.Free / 1GB)
Write-Host " [i] Disk size: ${totalSpaceGB} GB; Free space: ${freeSpaceGB} GB"
$freeSpaceGB | Should -BeGreaterOrEqual 18
It "The image has enough disk space"{
$availableSpaceMB = [math]::Round((Get-PSDrive -Name C).Free / 1MB)
$minimumFreeSpaceMB = 18 * 1024
$availableSpaceMB | Should -BeGreaterThan $minimumFreeSpaceMB
}
}
+8 -10
View File
@@ -21,8 +21,7 @@
"3.10.*",
"3.11.*",
"3.12.*",
"3.13.*",
"3.14.*"
"3.13.*"
],
"default": "3.9.*"
},
@@ -71,8 +70,7 @@
"versions": [
"1.22.*",
"1.23.*",
"1.24.*",
"1.25.*"
"1.24.*"
],
"default": "1.24.*"
}
@@ -438,17 +436,17 @@
"kotlin": {
"version": "2.1.10",
"pinnedDetails": {
"link": "https://github.com/actions/runner-images/issues/12045",
"reason": "Image is deprecated and will be removed soon",
"review-at": "2027-01-01"
"link": "https://youtrack.jetbrains.com/issues/KT?preview=KT-76169",
"reason": "this was pinned due to a new version 2.1.20 released has an issue with kotlinc-js -version` and kapt -version",
"review-at": "2025-03-31"
}
},
"openssl": {
"version": "1.1.1",
"pinnedDetails": {
"link": "https://github.com/actions/runner-images/issues/12045",
"reason": "Image is deprecated and will be removed soon",
"review-at": "2027-01-01"
"link": "https://github.com/somelink",
"reason": "this was pinned due to a downstream issue with the installer",
"review-at": "2025-01-30"
}
},
"pwsh": {
+26 -16
View File
@@ -5,6 +5,7 @@
"arch": "x64",
"platform" : "win32",
"versions": [
"3.1",
"3.2",
"3.3",
"3.4"
@@ -21,8 +22,7 @@
"3.10.*",
"3.11.*",
"3.12.*",
"3.13.*",
"3.14.*"
"3.13.*"
],
"default": "3.9.*"
},
@@ -57,9 +57,9 @@
"arch": "x64",
"platform" : "win32",
"versions": [
"18.*",
"20.*",
"22.*",
"24.*"
"22.*"
]
},
{
@@ -70,8 +70,7 @@
"versions": [
"1.22.*",
"1.23.*",
"1.24.*",
"1.25.*"
"1.24.*"
],
"default": "1.24.*"
}
@@ -101,7 +100,7 @@
],
"java": {
"default": "8",
"versions": [ "8", "11", "17", "21", "25"]
"versions": [ "8", "11", "17", "21"]
},
"android": {
"commandline_tools_url": "https://dl.google.com/android/repository/commandlinetools-win-9123335_latest.zip",
@@ -115,20 +114,26 @@
],
"addons": [],
"additional_tools": [
"cmake;3.18.1",
"cmake;3.22.1",
"cmake;3.31.5",
"cmake;4.1.2"
"cmake;3.31.5"
],
"ndk": {
"default": "27",
"versions": [
"26", "27", "28", "29"
"26", "27", "28"
]
}
},
"mingw": {
"version": "14.*",
"runtime": "ucrt"
"version": "12.2.0",
"runtime": "ucrt",
"pinnedDetails": {
"link": "https://github.com/actions/runner-images-internal/pull/6702",
"reason": "Meaningful reason must be added at next update.",
"review-at": "2025-06-01",
"type": "preexisting-pinned-version-without-reason"
}
},
"MsysPackages": {
"msys2": [],
@@ -291,8 +296,7 @@
"dotnet": {
"versions": [
"8.0",
"9.0",
"10.0"
"9.0"
],
"tools": [
{ "name": "nbgv", "test": "nbgv --version", "getversion": "nbgv --version" }
@@ -339,7 +343,7 @@
"version": "8.0"
},
"mongodb": {
"version": "7.0"
"version": "5.0"
},
"nsis": {
"version": "3.10"
@@ -357,7 +361,13 @@
"version": "latest"
},
"openssl": {
"version": "3.*"
"version": "1.1.1",
"pinnedDetails": {
"link": "https://github.com/actions/runner-images-internal/pull/6702",
"reason": "Meaningful reason must be added at next update.",
"review-at": "2024-06-01",
"type": "preexisting-pinned-version-without-reason"
}
},
"pwsh": {
"version": "7.4"
+26 -17
View File
@@ -5,6 +5,7 @@
"arch": "x64",
"platform" : "win32",
"versions": [
"3.1",
"3.2",
"3.3",
"3.4"
@@ -21,8 +22,7 @@
"3.10.*",
"3.11.*",
"3.12.*",
"3.13.*",
"3.14.*"
"3.13.*"
],
"default": "3.9.*"
},
@@ -41,9 +41,9 @@
"arch": "x64",
"platform" : "win32",
"versions": [
"18.*",
"20.*",
"22.*",
"24.*"
"22.*"
]
},
{
@@ -54,8 +54,7 @@
"versions": [
"1.22.*",
"1.23.*",
"1.24.*",
"1.25.*"
"1.24.*"
],
"default": "1.24.*"
}
@@ -83,7 +82,7 @@
],
"java": {
"default": "17",
"versions": [ "8", "11", "17", "21", "25"]
"versions": [ "8", "11", "17", "21"]
},
"android": {
"commandline_tools_url": "https://dl.google.com/android/repository/commandlinetools-win-12266719_latest.zip",
@@ -97,20 +96,26 @@
],
"addons": [],
"additional_tools": [
"cmake;3.22.1",
"cmake;3.30.5",
"cmake;3.31.5",
"cmake;4.1.2"
"cmake;3.31.5"
],
"ndk": {
"default": "27",
"versions": [
"26", "27", "28", "29"
"26", "27", "28"
]
}
},
"mingw": {
"version": "15.*",
"runtime": "ucrt"
"version": "14.2.0",
"runtime": "ucrt",
"pinnedDetails": {
"link": "https://github.com/actions/runner-images-internal/pull/6702",
"reason": "Meaningful reason must be added at next update.",
"review-at": "2025-06-01",
"type": "preexisting-pinned-version-without-reason"
}
},
"MsysPackages": {
"msys2": [],
@@ -259,8 +264,7 @@
"dotnet": {
"versions": [
"8.0",
"9.0",
"10.0"
"9.0"
],
"tools": [
{ "name": "nbgv", "test": "nbgv --version", "getversion": "nbgv --version" }
@@ -273,7 +277,6 @@
{ "name": "aria2" },
{ "name": "azcopy10" },
{ "name": "Bicep" },
{ "name": "innosetup" },
{ "name": "jq" },
{ "name": "NuGet.CommandLine" },
{ "name": "packer" },
@@ -291,7 +294,7 @@
},
{
"name": "strawberryperl" ,
"args": [ "--version", "5.42.0.1" ]
"args": [ "--version", "5.40.2.2" ]
},
{ "name": "imagemagick" },
{ "name": "ninja" }
@@ -322,7 +325,13 @@
"version": "latest"
},
"openssl": {
"version": "3.*"
"version": "3.5.2",
"pinnedDetails": {
"link": "https://github.com/openssl/openssl/releases/tag/openssl-3.5.2",
"reason": "Installer not found for version 3.5.1",
"review-at": "2025-10-10",
"type": "preexisting-pinned-version-without-reason"
}
},
"pwsh": {
"version": "7.4"