Compare commits

..

1 Commits

Author SHA1 Message Date
Hosted Runners Images Bot. 87c07d9e0e Updating readme file for macos-14 version 20251203.0047.1 2025-12-03 16:59:45 +00:00
12 changed files with 306 additions and 592 deletions
-294
View File
@@ -1,294 +0,0 @@
#!/usr/bin/env bash
################################################################################
## File: diff-image-versions.sh
## Desc: Compare software versions between two runner image releases
## Usage: ./diff-image-versions.sh <os-name> <version1> <version2>
##
## Example:
## ./diff-image-versions.sh ubuntu22 20251102.127 20251125.163
## ./diff-image-versions.sh win25 20251102.77 20251125.122
## ./diff-image-versions.sh macos-14 20251102.0024 20251125.0031
################################################################################
set -euo pipefail
usage() {
cat <<EOF
Usage: $(basename "${0}") <os-name> <version1> <version2>
Compare runner image versions and display software changes.
Arguments:
os-name OS identifier (ubuntu22, ubuntu24, win19, win22, win25,
macos-13, macos-14, macos-15, or arm64 variants)
version1 Earlier version (YYYYMMDD.NNN)
version2 Later version (YYYYMMDD.NNN)
Examples:
$(basename "${0}") ubuntu22 20251102.127 20251125.163
$(basename "${0}") win25 20251102.77 20251125.122
EOF
}
get_readme_path() {
local os_name="${1}"
local os_folder=""
local pattern=""
# Determine OS folder and readme filename pattern
case "${os_name}" in
ubuntu*)
os_folder="ubuntu"
local version="${os_name#ubuntu}"
pattern="Ubuntu${version}04-Readme.md"
;;
win*)
os_folder="windows"
local version="${os_name#win}"
pattern="Windows20${version}-Readme.md"
;;
macos*)
os_folder="macos"
pattern="${os_name}-Readme.md"
;;
*)
echo "Error: Unknown OS '${os_name}'" >&2
echo "Valid: ubuntu*, win*, macos-*" >&2
return 1
;;
esac
local readme_path="images/${os_folder}/${pattern}"
# Verify file exists in git repository
if ! git cat-file -e "HEAD:${readme_path}" 2>/dev/null; then
echo "Error: Readme not found: ${readme_path}" >&2
return 1
fi
echo "${readme_path}"
}
validate_version() {
local version="${1}"
if [[ ! "${version}" =~ ^[0-9]{8}\.[0-9]+$ ]]; then
echo "Error: Invalid version '${version}'" >&2
echo "Format: YYYYMMDD.NNN (e.g., 20251102.127)" >&2
return 1
fi
return 0
}
tag_exists() {
local tag="${1}"
if git rev-parse "${tag}" >/dev/null 2>&1; then
return 0
else
echo "Error: Tag '${tag}' not found" >&2
return 1
fi
}
main() {
# Check arguments
if [[ $# -ne 3 ]]; then
usage
return 1
fi
local os_name="${1}"
local version1="${2}"
local version2="${3}"
# Validate inputs
validate_version "${version1}" || return 1
validate_version "${version2}" || return 1
# Get readme path
local readme_path
readme_path="$(get_readme_path "${os_name}")" || return 1
# Construct git tags
local tag1="${os_name}/${version1}"
local tag2="${os_name}/${version2}"
# Verify tags exist
tag_exists "${tag1}" || return 1
tag_exists "${tag2}" || return 1
# Get release dates
local date1
local date2
date1=$(git log -1 --format="%ci" "${tag1}" | cut -d' ' -f1)
date2=$(git log -1 --format="%ci" "${tag2}" | cut -d' ' -f1)
# Calculate days between releases
local days_diff
days_diff=$(( ($(date -d "${date2}" +%s) - $(date -d "${date1}" +%s)) / 86400 ))
# Display header
echo "================================================================================"
echo "Comparing: ${os_name}"
echo " From: ${version1} (${date1})"
echo " To: ${version2} (${date2})"
echo " Span: ${days_diff} days"
echo "================================================================================"
echo ""
# Perform diff with minimal context (only changed lines with colors)
# ANSI codes: ^[[31m (red for -), ^[[32m (green for +), ^[[36m (cyan for @@)
# Filter to show only lines starting with red/green (additions/deletions)
local diff_output
diff_output=$(git diff --color=always --unified=0 "${tag1}:${readme_path}" "${tag2}:${readme_path}" | \
grep -E $'^\x1b\\[(31|32)m' | \
grep -v -E $'^\x1b\\[1m(---|\\+\\+\\+)')
if [[ -n "${diff_output}" ]]; then
# Extract announcements from both versions
local announcements1
local announcements2
announcements1=$(git show "${tag1}:${readme_path}" | sed -n '/| Announcements |/,/^\*\*\*$/p' | grep -E '^\| \[' | sed 's/^| \[/• [/' | sed 's/ |$//' || true)
announcements2=$(git show "${tag2}:${readme_path}" | sed -n '/| Announcements |/,/^\*\*\*$/p' | grep -E '^\| \[' | sed 's/^| \[/• [/' | sed 's/ |$//' || true)
# Show announcement changes
if [[ "${announcements1}" != "${announcements2}" ]]; then
echo "📢 Announcement Changes:"
echo "────────────────────────────────────────────────────────────────────────────────"
if [[ -n "${announcements2}" ]]; then
echo "${announcements2}"
else
echo "(no announcements)"
fi
echo "────────────────────────────────────────────────────────────────────────────────"
echo ""
fi
# Extract cached tools sections
local cached_tools1
local cached_tools2
cached_tools1=$(git show "${tag1}:${readme_path}" | sed -n '/^### Cached Tools$/,/^###[^#]/p' | head -n -1 || true)
cached_tools2=$(git show "${tag2}:${readme_path}" | sed -n '/^### Cached Tools$/,/^###[^#]/p' | head -n -1 || true)
# Show cached tools changes
if [[ "${cached_tools1}" != "${cached_tools2}" ]]; then
local cached_diff
cached_diff=$(git diff --color=always --unified=2 --no-index \
<(echo "${cached_tools1}") <(echo "${cached_tools2}") 2>/dev/null | \
grep -E $'(^\x1b\\[(31|32)m[-+]| #### )' | \
sed -r 's/\x1b\[m$//' || true)
if [[ -n "${cached_diff}" ]]; then
echo "🔧 Cached Tools Changes (setup-* actions):"
echo "────────────────────────────────────────────────────────────────────────────────"
echo "${cached_diff}"
echo "────────────────────────────────────────────────────────────────────────────────"
echo ""
fi
fi
echo "Full Diff:"
echo "────────────────────────────────────────────────────────────────────────────────"
echo "${diff_output}"
echo "────────────────────────────────────────────────────────────────────────────────"
echo ""
# Count changes
local changes
changes=$(echo "${diff_output}" | wc -l)
echo "Changes: ${changes} lines"
# Parse version changes for breaking change analysis
local breaking_changes=()
local removals=()
local additions=()
# Extract clean lines (strip ANSI codes)
while IFS= read -r line; do
if [[ "${line}" =~ ^\-(.+)$ ]]; then
removals+=("${BASH_REMATCH[1]}")
elif [[ "${line}" =~ ^\+(.+)$ ]]; then
additions+=("${BASH_REMATCH[1]}")
fi
done < <(echo "${diff_output}" | sed -r 's/\x1b\[[0-9;]*m//g')
# Detect breaking changes
for removed in "${removals[@]}"; do
local tool_name=""
local old_version=""
local found_match=false
# Try to extract tool name and version (handle various formats)
if [[ "${removed}" =~ ^([^0-9]+[[:space:]]+)([0-9]+\.[0-9]+[^[:space:]]*) ]]; then
tool_name="${BASH_REMATCH[1]}"
old_version="${BASH_REMATCH[2]}"
elif [[ "${removed}" =~ ^([^0-9]+[[:space:]]+v)([0-9]+\.[0-9]+[^[:space:]]*) ]]; then
tool_name="${BASH_REMATCH[1]}"
old_version="${BASH_REMATCH[2]}"
fi
# If we found a semver-style version, look for matching addition
if [[ -n "${tool_name}" && -n "${old_version}" ]]; then
for added in "${additions[@]}"; do
if [[ "${added}" =~ ^${tool_name}([0-9]+\.[0-9]+[^[:space:]]*) ]]; then
local new_version="${BASH_REMATCH[1]}"
found_match=true
# Extract major version for semver comparison
if [[ "${old_version}" =~ ^([0-9]+)\. && "${new_version}" =~ ^([0-9]+)\. ]]; then
local old_major="${BASH_REMATCH[1]}"
local new_major="${BASH_REMATCH[1]}"
[[ "${old_version}" =~ ^([0-9]+)\. ]] && old_major="${BASH_REMATCH[1]}"
[[ "${new_version}" =~ ^([0-9]+)\. ]] && new_major="${BASH_REMATCH[1]}"
if [[ ${new_major} -gt ${old_major} ]]; then
breaking_changes+=("🔴 ${tool_name}${old_version}${new_version} (major version bump)")
fi
fi
break
fi
done
fi
# If no match found and looks like a versioned tool, it's a removal
if [[ ${found_match} == false && -n "${old_version}" ]]; then
breaking_changes+=("${removed} (removed)")
elif [[ ${found_match} == false && "${removed}" =~ [0-9]+\.[0-9]+ ]]; then
breaking_changes+=("${removed} (removed)")
fi
done
# Display breaking changes
if [[ ${#breaking_changes[@]} -gt 0 ]]; then
echo ""
echo "⚠️ Breaking changes detected (${#breaking_changes[@]}):"
echo "--------------------------------------------------------------------------------"
printf '%s\n' "${breaking_changes[@]}"
echo "--------------------------------------------------------------------------------"
fi
else
echo "No changes found."
fi
# Display PR link and commit count
local pr_number
pr_number=$(git log --all --format="%s" --grep="${version2}" | \
grep -oP '\(#\K[0-9]+(?=\))' | head -1)
local commit_count
commit_count=$(git rev-list --count "${tag1}..${tag2}")
echo "Commits: ${commit_count}"
if [[ -n "${pr_number}" ]]; then
echo "PR: https://github.com/actions/runner-images/pull/${pr_number}"
fi
return 0
}
# Execute main function
main "$@"
+15 -15
View File
@@ -9,7 +9,7 @@
# macOS 14
- OS Version: macOS 14.8.2 (23J126)
- Kernel Version: Darwin 23.6.0
- Image Version: 20251203.0037.1
- Image Version: 20251126.0029
## Installed Software
@@ -26,22 +26,22 @@
- GNU Fortran 15 (Homebrew GCC 15.2.0) - available by `gfortran-15` alias
- Kotlin 2.2.21-release-469
- Mono 6.12.0.188
- Node.js 20.19.6
- Node.js 20.19.5
- Perl 5.40.2
- Python3 3.14.0
- Ruby 3.3.10
### Package Management
- Bundler 4.0.0
- Bundler 2.7.2
- Carthage 0.40.0
- CocoaPods 1.16.2
- Homebrew 5.0.4
- Homebrew 5.0.3
- NPM 10.8.2
- NuGet 6.3.1.1
- Pip3 25.3 (python 3.14)
- Pipx 1.8.0
- RubyGems 4.0.0
- Vcpkg 2025 (build from commit 80d025e829)
- RubyGems 3.7.2
- Vcpkg 2025 (build from commit 4c5ae6b55f)
- Yarn 1.22.22
### Project Management
@@ -73,16 +73,16 @@
- Ninja 1.13.2
### Tools
- AWS CLI 2.32.8
- AWS SAM CLI 1.149.0
- AWS CLI 2.32.5
- AWS SAM CLI 1.148.0
- AWS Session Manager CLI 1.2.764.0
- Azure CLI 2.81.0
- Azure CLI 2.80.0
- Azure CLI (azure-devops) 1.0.2
- Bicep CLI 0.39.26
- Cmake 4.2.0
- CodeQL Action Bundle 2.23.6
- Fastlane 2.229.1
- SwiftFormat 0.58.7
- SwiftFormat 0.58.6
- Xcbeautify 3.1.1
- Xcode Command Line Tools 16.2.0.0.1.1733547573
- Xcodes 1.6.2
@@ -90,9 +90,9 @@
### Browsers
- Safari 26.1 (19622.2.11.119.1)
- SafariDriver 26.1 (19622.2.11.119.1)
- Google Chrome 143.0.7499.41
- Google Chrome for Testing 143.0.7499.40
- ChromeDriver 143.0.7499.40
- Google Chrome 142.0.7444.176
- Google Chrome for Testing 142.0.7444.175
- ChromeDriver 142.0.7444.175
- Microsoft Edge 142.0.3595.94
- Microsoft Edge WebDriver 142.0.3595.94
- Mozilla Firefox 145.0.2
@@ -135,8 +135,8 @@
#### Go
- 1.22.12
- 1.23.12
- 1.24.11
- 1.25.5
- 1.24.10
- 1.25.4
### Rust Tools
- Cargo 1.91.1
+16 -16
View File
@@ -9,7 +9,7 @@
# macOS 15
- OS Version: macOS 15.7.2 (24G325)
- Kernel Version: Darwin 24.6.0
- Image Version: 20251203.0058.1
- Image Version: 20251126.0042
## Installed Software
@@ -32,16 +32,16 @@
- Ruby 3.3.10
### Package Management
- Bundler 4.0.0
- Bundler 2.7.2
- Carthage 0.40.0
- CocoaPods 1.16.2
- Composer 2.9.2
- Homebrew 5.0.4
- Homebrew 5.0.3
- NPM 10.9.4
- Pip3 25.3 (python 3.14)
- Pipx 1.8.0
- RubyGems 4.0.0
- Vcpkg 2025 (build from commit 80d025e829)
- RubyGems 3.7.2
- Vcpkg 2025 (build from commit 4c5ae6b55f)
- Yarn 1.22.22
### Project Management
@@ -73,16 +73,16 @@
- Ninja 1.13.2
### Tools
- AWS CLI 2.32.8
- AWS SAM CLI 1.149.0
- AWS CLI 2.32.5
- AWS SAM CLI 1.148.0
- AWS Session Manager CLI 1.2.764.0
- Azure CLI 2.81.0
- Azure CLI 2.80.0
- Azure CLI (azure-devops) 1.0.2
- Bicep CLI 0.39.26
- Cmake 4.2.0
- CodeQL Action Bundle 2.23.6
- Fastlane 2.229.1
- SwiftFormat 0.58.7
- SwiftFormat 0.58.6
- Xcbeautify 3.1.1
- Xcode Command Line Tools 16.4.0.0.1.1747106510
- Xcodes 1.6.2
@@ -93,9 +93,9 @@
### Browsers
- Safari 26.1 (20622.2.11.119.1)
- SafariDriver 26.1 (20622.2.11.119.1)
- Google Chrome 143.0.7499.41
- Google Chrome for Testing 143.0.7499.40
- ChromeDriver 143.0.7499.40
- Google Chrome 142.0.7444.176
- Google Chrome for Testing 142.0.7444.175
- ChromeDriver 142.0.7444.175
- Microsoft Edge 142.0.3595.94
- Microsoft Edge WebDriver 142.0.3595.94
- Mozilla Firefox 145.0.2
@@ -129,8 +129,8 @@
- 3.10.19
- 3.11.9
- 3.12.10
- 3.13.10
- 3.14.1
- 3.13.9
- 3.14.0
#### Node.js
- 20.19.6
@@ -140,8 +140,8 @@
#### Go
- 1.22.12
- 1.23.12
- 1.24.11
- 1.25.5
- 1.24.10
- 1.25.4
### Rust Tools
- Cargo 1.91.1
+16 -16
View File
@@ -9,7 +9,7 @@
# macOS 15
- OS Version: macOS 15.7.2 (24G325)
- Kernel Version: Darwin 24.6.0
- Image Version: 20251203.0057.1
- Image Version: 20251126.0044
## Installed Software
@@ -31,15 +31,15 @@
- Ruby 3.3.10
### Package Management
- Bundler 4.0.0
- Bundler 2.7.2
- Carthage 0.40.0
- CocoaPods 1.16.2
- Homebrew 5.0.4
- Homebrew 5.0.3
- NPM 10.9.4
- Pip3 25.3 (python 3.14)
- Pipx 1.8.0
- RubyGems 4.0.0
- Vcpkg 2025 (build from commit 80d025e829)
- RubyGems 3.7.2
- Vcpkg 2025 (build from commit 4c5ae6b55f)
- Yarn 1.22.22
### Project Management
@@ -71,16 +71,16 @@
- Ninja 1.13.2
### Tools
- AWS CLI 2.32.8
- AWS SAM CLI 1.149.0
- AWS CLI 2.32.5
- AWS SAM CLI 1.148.0
- AWS Session Manager CLI 1.2.764.0
- Azure CLI 2.81.0
- Azure CLI 2.80.0
- Azure CLI (azure-devops) 1.0.2
- Bicep CLI 0.39.26
- Cmake 4.2.0
- CodeQL Action Bundle 2.23.6
- Fastlane 2.229.1
- SwiftFormat 0.58.7
- SwiftFormat 0.58.6
- Xcbeautify 3.1.1
- Xcode Command Line Tools 16.4.0.0.1.1747106510
- Xcodes 1.6.2
@@ -88,9 +88,9 @@
### Browsers
- Safari 26.1 (20622.2.11.119.1)
- SafariDriver 26.1 (20622.2.11.119.1)
- Google Chrome 143.0.7499.41
- Google Chrome for Testing 143.0.7499.40
- ChromeDriver 143.0.7499.40
- Google Chrome 142.0.7444.176
- Google Chrome for Testing 142.0.7444.175
- ChromeDriver 142.0.7444.175
- Microsoft Edge 142.0.3595.94
- Microsoft Edge WebDriver 142.0.3595.94
- Mozilla Firefox 145.0.2
@@ -122,8 +122,8 @@
#### Python
- 3.11.9
- 3.12.10
- 3.13.10
- 3.14.1
- 3.13.9
- 3.14.0
#### Node.js
- 20.19.6
@@ -133,8 +133,8 @@
#### Go
- 1.22.12
- 1.23.12
- 1.24.11
- 1.25.5
- 1.24.10
- 1.25.4
### Rust Tools
- Cargo 1.91.1
+16 -16
View File
@@ -9,7 +9,7 @@
# macOS 26
- OS Version: macOS 26.0.1 (25A362)
- Kernel Version: Darwin 25.0.0
- Image Version: 20251203.0070.1
- Image Version: 20251126.0052
## Installed Software
@@ -31,15 +31,15 @@
- Ruby 3.4.7
### Package Management
- Bundler 4.0.0
- Bundler 2.7.2
- Carthage 0.40.0
- CocoaPods 1.16.2
- Homebrew 5.0.4
- Homebrew 5.0.3
- NPM 11.6.2
- Pip3 25.3 (python 3.14)
- Pipx 1.8.0
- RubyGems 4.0.0
- Vcpkg 2025 (build from commit 80d025e829)
- RubyGems 3.7.2
- Vcpkg 2025 (build from commit 4c5ae6b55f)
- Yarn 1.22.22
### Project Management
@@ -71,16 +71,16 @@
- Ninja 1.13.2
### Tools
- AWS CLI 2.32.8
- AWS SAM CLI 1.149.0
- AWS CLI 2.32.5
- AWS SAM CLI 1.148.0
- AWS Session Manager CLI 1.2.764.0
- Azure CLI 2.81.0
- Azure CLI 2.80.0
- Azure CLI (azure-devops) 1.0.2
- Bicep CLI 0.39.26
- Cmake 4.2.0
- CodeQL Action Bundle 2.23.6
- Fastlane 2.229.1
- SwiftFormat 0.58.7
- SwiftFormat 0.58.6
- Xcbeautify 3.1.1
- Xcode Command Line Tools 26.1.0.0.1.1761104275
- Xcodes 1.6.2
@@ -88,9 +88,9 @@
### Browsers
- Safari 26.0.1 (21622.1.22.11.15)
- SafariDriver 26.0.1 (21622.1.22.11.15)
- Google Chrome 143.0.7499.41
- Google Chrome for Testing 143.0.7499.40
- ChromeDriver 143.0.7499.40
- Google Chrome 142.0.7444.176
- Google Chrome for Testing 142.0.7444.175
- ChromeDriver 142.0.7444.175
- Microsoft Edge 142.0.3595.94
- Microsoft Edge WebDriver 142.0.3595.94
- Mozilla Firefox 145.0.2
@@ -122,8 +122,8 @@
#### Python
- 3.11.9
- 3.12.10
- 3.13.10
- 3.14.1
- 3.13.9
- 3.14.0
#### Node.js
- 20.19.6
@@ -132,8 +132,8 @@
#### Go
- 1.23.12
- 1.24.11
- 1.25.5
- 1.24.10
- 1.25.4
### Rust Tools
- Cargo 1.91.1
@@ -9,8 +9,6 @@ source ~/utils/utils.sh
arch=$(get_arch)
imagedata_file="$HOME/imagedata.json"
image_version=$(echo $IMAGE_VERSION | cut -d _ -f 2)
image_version_major=${image_version/.*/}
image_version_minor=$(echo $image_version | cut -d "." -f 2)
os_name=$(sw_vers -productName)
os_version=$(sw_vers -productVersion)
os_build=$(sw_vers -buildVersion)
@@ -22,8 +20,8 @@ else
image_label="macos-${label_version}"
fi
software_url="https://github.com/actions/runner-images/blob/${image_label}/${image_version_major}.${image_version_minor}/images/macos/${image_label}-Readme.md"
releaseUrl="https://github.com/actions/runner-images/releases/tag/${image_label}%2F${image_version_major}.${image_version_minor}"
software_url="https://github.com/actions/runner-images/blob/${image_label}/${image_version}/images/macos/${image_label}-Readme.md"
releaseUrl="https://github.com/actions/runner-images/releases/tag/${image_label}%2F${image_version}"
cat <<EOF > $imagedata_file
[
@@ -33,12 +33,6 @@ sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.backupd.plist
echo "Disable Apple Push Notification Service daemon"
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.apsd.plist
echo "Set SMC monitoring cadence to 0 to reduce CPU usage"
sudo defaults -currentHost write /Library/Preferences/com.apple.powerlogd SMCMonitorCadence 0
echo "Disable Performance and Power Management daemon if possible"
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.PerfPowerServices.plist
# Remove Parallels Desktop
# https://github.com/actions/runner-images/issues/6105
# https://github.com/actions/runner-images/issues/10143
+16 -4
View File
@@ -4,11 +4,11 @@
"arm64":{
"versions": [
{
"link": "26.2_Release_Candidate",
"filename": "Xcode_26.2_Release_Candidate_Universal",
"version": "26.2_Release_Candidate+17C48",
"link": "26.2_beta_2",
"filename": "Xcode_26.2_beta_2_Universal",
"version": "26.2_beta_2+17C5038g",
"symlinks": ["26.2"],
"sha256": "63743df751791508ac8e4f01a33e3f28f3a59a86ff3f33c8c155c3046daedf42",
"sha256": "eb8fd7fc889e940450c5a48600276810a011f36314c43d632253d0fc4d40e2c7",
"install_runtimes": "none"
},
{
@@ -26,6 +26,18 @@
"symlinks": ["26.0"],
"sha256": "9881c457068c86ac91e94cca2d7116dfd01cb7179c22b0863b63c7f3bb7e7695",
"install_runtimes": "default"
},
{
"link": "16.4",
"filename": "Xcode_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"] }
]
}
]
}
+44 -43
View File
@@ -1,11 +1,12 @@
| 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: 20251125.163.1
- Image Version: 20251112.150.1
- Systemd version: 249.11-0ubuntu3.17
## Installed Software
@@ -18,11 +19,11 @@
- 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.2
- Julia 1.12.1
- Kotlin 2.2.21-release-469
- Mono 6.12.0.200
- MSBuild 16.10.1.31701 (Mono 6.12.0.200)
- Node.js 20.19.6
- Node.js 20.19.5
- Perl 5.34.0
- Python 3.10.12
- Ruby 3.0.2p107
@@ -31,7 +32,7 @@
### Package Management
- cpan 1.64
- Helm 3.19.2
- Homebrew 5.0.3
- Homebrew 5.0.1
- Miniconda 25.9.1
- Npm 10.8.2
- NuGet 6.6.1.2
@@ -39,7 +40,7 @@
- Pip3 22.0.2
- Pipx 1.8.0
- RubyGems 3.3.5
- Vcpkg (build from commit 9aee6e968f)
- Vcpkg (build from commit beace5bfdd)
- Yarn 1.22.22
#### Environment variables
@@ -58,8 +59,8 @@ to accomplish this.
### Project Management
- Ant 1.10.12
- Gradle 9.2.1
- Lerna 9.0.1
- Gradle 9.2.0
- Lerna 9.0.0
- Maven 3.9.11
- Sbt 1.11.7
@@ -69,21 +70,21 @@ to accomplish this.
- AzCopy 10.31.0 - available by `azcopy` and `azcopy10` aliases
- Bazel 8.4.2
- Bazelisk 1.26.0
- Bicep 0.39.26
- Bicep 0.38.33
- Buildah 1.23.1
- CMake 3.31.6
- CodeQL Action Bundle 2.23.6
- CodeQL Action Bundle 2.23.3
- Docker Amazon ECR Credential Helper 0.11.0
- Docker Compose v2 2.38.2
- Docker-Buildx 0.30.1
- Docker-Buildx 0.30.0
- Docker Client 28.0.4
- Docker Server 28.0.4
- Fastlane 2.229.1
- Git 2.52.0
- Fastlane 2.228.0
- Git 2.51.2
- Git LFS 3.7.1
- Git-ftp 1.6.0
- Haveged 1.9.14
- Heroku 10.15.1
- Heroku 10.15.0
- jq 1.6
- Kind 0.30.0
- Kubectl 1.34.2
@@ -96,33 +97,33 @@ to accomplish this.
- Newman 6.2.1
- nvm 0.40.3
- OpenSSL 3.0.2-0ubuntu1.20
- Packer 1.14.3
- Packer 1.14.2
- Parcel 2.16.1
- Podman 3.4.4
- Pulumi 3.208.0
- Pulumi 3.207.0
- R 4.5.2
- Skopeo 1.4.1
- Sphinx Open Source Search Server 2.2.11
- SVN 1.14.1
- Terraform 1.14.0
- Terraform 1.13.5
- yamllint 1.37.1
- yq 4.49.2
- yq 4.48.1
- zstd 1.5.7
- Ninja 1.13.2
- Ninja 1.13.1
### CLI Tools
- Alibaba Cloud CLI 3.1.5
- AWS CLI 2.32.5
- AWS CLI Session Manager Plugin 1.2.764.0
- AWS SAM CLI 1.148.0
- Azure CLI 2.80.0
- Alibaba Cloud CLI 3.1.4
- AWS CLI 2.31.35
- AWS CLI Session Manager Plugin 1.2.707.0
- AWS SAM CLI 1.146.0
- Azure CLI 2.79.0
- Azure CLI (azure-devops) 1.0.2
- GitHub CLI 2.83.1
- Google Cloud CLI 548.0.0
- Netlify CLI 23.11.1
- OpenShift CLI 4.20.5
- GitHub CLI 2.83.0
- Google Cloud CLI 547.0.0
- Netlify CLI 23.10.0
- OpenShift CLI 4.20.2
- ORAS CLI 1.3.0
- Vercel CLI 48.10.13
- Vercel CLI 48.9.1
### Java
| Version | Environment Variable |
@@ -135,7 +136,7 @@ to accomplish this.
### PHP Tools
- PHP: 8.1.2
- Composer 2.9.2
- Composer 2.8.12
- PHPUnit 8.5.48
```
Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
@@ -162,13 +163,13 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
- Rustfmt 1.8.0
### Browsers and Drivers
- Google Chrome 142.0.7444.175
- ChromeDriver 142.0.7444.175
- Google Chrome 142.0.7444.162
- ChromeDriver 142.0.7444.162
- Chromium 142.0.7444.0
- Microsoft Edge 142.0.3595.94
- Microsoft Edge WebDriver 142.0.3595.94
- Microsoft Edge 142.0.3595.65
- Microsoft Edge WebDriver 142.0.3595.65
- Selenium server 4.38.0
- Mozilla Firefox 145.0.2
- Mozilla Firefox 145.0
- Geckodriver 0.36.0
#### Environment variables
@@ -180,14 +181,14 @@ 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.122, 8.0.206, 8.0.319, 8.0.416, 9.0.112, 9.0.205, 9.0.308, 10.0.100
- .NET Core SDK: 8.0.122, 8.0.206, 8.0.319, 8.0.416, 9.0.112, 9.0.205, 9.0.307, 10.0.100
- nbgv 3.9.50+6feeb89450
### Databases
- sqlite3 3.37.2
#### PostgreSQL
- PostgreSQL 14.20
- PostgreSQL 14.19
```
User: postgres
PostgreSQL service is disabled by default.
@@ -195,7 +196,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
```
#### MySQL
- MySQL 8.0.44-0ubuntu0.22.04.1
- MySQL 8.0.43-0ubuntu0.22.04.2
```
User: root
Password: root
@@ -287,16 +288,16 @@ Use the following command as a part of your job to start the service: 'sudo syst
| alpine:3.18 | sha256:de0eb0b3f2a47ba1eb89389859a9bd88b28e82f5826b6969ad604979713c2d4f | 2025-02-14 |
| alpine:3.19 | sha256:6baf43584bcb78f2e5847d1de515f23499913ac9f12bdf834811a3145eb11ca1 | 2025-10-08 |
| debian:10 | sha256:58ce6f1271ae1c8a2006ff7d3e54e9874d839f573d8009c20154ad0f2fb0a225 | 2024-06-13 |
| debian:11 | sha256:ee239c601913c0d3962208299eef70dcffcb7aac1787f7a02f6d3e2b518755e6 | 2025-11-17 |
| moby/buildkit:latest | sha256:de10faf919fc71ba4eb1dd7bd6449566d012b0c9436b1c61bfee21d621b009aa | 2025-11-20 |
| debian:11 | sha256:37d7709beef67abbccfcac94a2150d25fdac3764251a60f2c20e9fd069d228d8 | 2025-11-03 |
| moby/buildkit:latest | sha256:93da6a53287490dd3b35952f73a109654ed9f260f2e6434db925125fa3ac6b2a | 2025-11-12 |
| node:18 | sha256:c6ae79e38498325db67193d391e6ec1d224d96c693a8a4d943498556716d3783 | 2025-03-27 |
| node:18-alpine | sha256:8d6421d663b4c28fd3ebc498332f249011d118945588d0a35cb9bc4b8ca09d9e | 2025-03-27 |
| node:20 | sha256:66d2eb8b463114d1f416d61dbd5fa9cea83e8fc250feb997338467728a06124b | 2025-11-25 |
| node:20-alpine | sha256:16858294071a56ffd4cce9f17b57136cc39e41507b40e245b4f8e906f7a19463 | 2025-11-25 |
| node:22 | sha256:4ad2c2b350ab49fb637ab40a269ffe207c61818bb7eb3a4ea122001a0c605e1f | 2025-11-18 |
| node:20 | sha256:47dacd49500971c0fbe602323b2d04f6df40a933b123889636fc1f76bf69f58a | 2025-11-04 |
| node:20-alpine | sha256:6178e78b972f79c335df281f4b7674a2d85071aae2af020ffa39f0a770265435 | 2025-10-16 |
| node:22 | sha256:dcf06103a9d4087e3244a51697adbbb85331dcb7161dbe994ca1cd07dd32e2a5 | 2025-11-04 |
| node:22-alpine | sha256:b2358485e3e33bc3a33114d2b1bdb18cdbe4df01bd2b257198eb51beb1f026c5 | 2025-10-29 |
| ubuntu:20.04 | sha256:8feb4d8ca5354def3d8fce243717141ce31e2c428701f6682bd2fafe15388214 | 2025-04-08 |
| ubuntu:22.04 | sha256:104ae83764a5119017b8e8d6218fa0832b09df65aae7d5a6de29a85d813da2fb | 2025-10-13 |
| ubuntu:22.04 | sha256:09506232a8004baa32c47d68f1e5c307d648fdd59f5e7eaa42aaf87914100db3 | 2025-10-01 |
### Installed apt packages
| Name | Version |
+36 -35
View File
@@ -1,11 +1,12 @@
| 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: 20251126.144.1
- Image Version: 20251112.124.1
- Systemd version: 255.4-1ubuntu8.11
## Installed Software
@@ -18,9 +19,9 @@
- 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.2
- Julia 1.12.1
- Kotlin 2.2.21-release-469
- Node.js 20.19.6
- Node.js 20.19.5
- Perl 5.38.2
- Python 3.12.3
- Ruby 3.2.3
@@ -28,15 +29,15 @@
### Package Management
- cpan 1.64
- Helm 3.19.2
- Homebrew 5.0.3
- Helm 3.19.1
- Homebrew 5.0.0
- Miniconda 25.9.1
- Npm 10.8.2
- Pip 24.0
- Pip3 24.0
- Pipx 1.8.0
- RubyGems 3.4.20
- Vcpkg (build from commit da93ad9cab)
- Vcpkg (build from commit e93bf57963)
- Yarn 1.22.22
#### Environment variables
@@ -55,26 +56,26 @@ to accomplish this.
### Project Management
- Ant 1.10.14
- Gradle 9.2.1
- Lerna 9.0.1
- Gradle 9.2.0
- Lerna 9.0.0
- Maven 3.9.11
### Tools
- Ansible 2.20.0
- Ansible 2.19.4
- AzCopy 10.31.0 - available by `azcopy` and `azcopy10` aliases
- Bazel 8.4.2
- Bazelisk 1.26.0
- Bicep 0.39.26
- Bicep 0.38.33
- Buildah 1.33.7
- CMake 3.31.6
- CodeQL Action Bundle 2.23.6
- CodeQL Action Bundle 2.23.3
- Docker Amazon ECR Credential Helper 0.11.0
- Docker Compose v2 2.38.2
- Docker-Buildx 0.30.1
- Docker-Buildx 0.29.1
- Docker Client 28.0.4
- Docker Server 28.0.4
- Fastlane 2.229.1
- Git 2.52.0
- Fastlane 2.228.0
- Git 2.51.2
- Git LFS 3.7.1
- Git-ftp 1.6.0
- Haveged 1.9.14
@@ -89,25 +90,25 @@ to accomplish this.
- Newman 6.2.1
- nvm 0.40.3
- OpenSSL 3.0.13-0ubuntu3.6
- Packer 1.14.3
- Packer 1.14.2
- Parcel 2.16.1
- Podman 4.9.3
- Pulumi 3.209.0
- Pulumi 3.206.0
- Skopeo 1.13.3
- Sphinx Open Source Search Server 2.2.11
- yamllint 1.37.1
- yq 4.49.2
- yq 4.48.1
- zstd 1.5.7
- Ninja 1.13.2
- Ninja 1.13.1
### CLI Tools
- AWS CLI 2.32.5
- AWS CLI Session Manager Plugin 1.2.764.0
- AWS SAM CLI 1.148.0
- Azure CLI 2.80.0
- AWS CLI 2.31.34
- AWS CLI Session Manager Plugin 1.2.707.0
- AWS SAM CLI 1.146.0
- Azure CLI 2.79.0
- Azure CLI (azure-devops) 1.0.2
- GitHub CLI 2.83.1
- Google Cloud CLI 548.0.0
- GitHub CLI 2.83.0
- Google Cloud CLI 547.0.0
### Java
| Version | Environment Variable |
@@ -120,7 +121,7 @@ to accomplish this.
### PHP Tools
- PHP: 8.3.6
- Composer 2.9.2
- Composer 2.8.12
- PHPUnit 8.5.48
```
Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
@@ -142,13 +143,13 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
- Rustfmt 1.8.0
### Browsers and Drivers
- Google Chrome 142.0.7444.175
- ChromeDriver 142.0.7444.175
- Google Chrome 142.0.7444.162
- ChromeDriver 142.0.7444.162
- Chromium 142.0.7444.0
- Microsoft Edge 142.0.3595.94
- Microsoft Edge WebDriver 142.0.3595.94
- Microsoft Edge 142.0.3595.65
- Microsoft Edge WebDriver 142.0.3595.65
- Selenium server 4.38.0
- Mozilla Firefox 145.0.2
- Mozilla Firefox 145.0
- Geckodriver 0.36.0
#### Environment variables
@@ -160,14 +161,14 @@ 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.122, 8.0.206, 8.0.319, 8.0.416, 9.0.112, 9.0.205, 9.0.308, 10.0.100
- .NET Core SDK: 8.0.122, 8.0.206, 8.0.319, 8.0.416, 9.0.112, 9.0.205, 9.0.307, 10.0.100
- nbgv 3.9.50+6feeb89450
### Databases
- sqlite3 3.45.1
#### PostgreSQL
- PostgreSQL 16.11
- PostgreSQL 16.10
```
User: postgres
PostgreSQL service is disabled by default.
@@ -175,7 +176,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
```
#### MySQL
- MySQL 8.0.44-0ubuntu0.24.04.1
- MySQL 8.0.43-0ubuntu0.24.04.2
```
User: root
Password: root
@@ -192,7 +193,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
- 1.25.4
#### Node.js
- 20.19.6
- 20.19.5
- 22.21.1
- 24.11.1
@@ -319,7 +320,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
| texinfo | 7.1-3build2 |
| time | 1.9-0.2build1 |
| tk | 8.6.14build1 |
| tree | 2.1.1-2ubuntu3.24.04.2 |
| tree | 2.1.1-2ubuntu3 |
| tzdata | 2025b-0ubuntu0.24.04.1 |
| unzip | 6.0-28ubuntu4.1 |
| upx | 4.2.2-3 |
+75 -74
View File
@@ -3,8 +3,8 @@
| [[Ubuntu & Windows] Four tools scheduled for deprecation on November 3, 2025](https://github.com/actions/runner-images/issues/12898) |
***
# Windows Server 2022
- OS Version: 10.0.20348 Build 4405
- Image Version: 20251125.125.1
- OS Version: 10.0.20348 Build 4297
- Image Version: 20251102.87.1
## Windows features
- Windows Subsystem for Linux (WSLv1): Enabled
@@ -13,27 +13,27 @@
### Language and Runtime
- Bash 5.2.37(1)-release
- Go 1.24.10
- Go 1.24.9
- Julia 1.12.0
- Kotlin 2.2.21
- LLVM 20.1.8
- Node 20.19.6
- Node 20.19.5
- Perl 5.32.1
- PHP 8.4.15
- PHP 8.4.14
- Python 3.9.13
- Ruby 3.3.10
### Package Management
- Chocolatey 2.5.1
- Composer 2.9.2
- Helm 4.0.0
- Composer 2.8.12
- Helm 3.19.0
- Miniconda 25.9.1 (pre-installed on the image but not added to PATH)
- NPM 10.8.2
- NuGet 7.0.0.289
- NuGet 6.14.0.116
- pip 25.3 (python 3.9)
- Pipx 1.8.0
- RubyGems 3.5.22
- Vcpkg (build from commit 9aee6e968f)
- Vcpkg (build from commit e3ed41868d)
- Yarn 1.22.22
#### Environment variables
@@ -54,21 +54,21 @@
- azcopy 10.31.0
- Bazel 8.4.2
- Bazelisk 1.26.0
- Bicep 0.39.26
- Bicep 0.38.33
- Cabal 3.16.0.0
- CMake 3.31.6
- CodeQL Action Bundle 2.23.6
- CodeQL Action Bundle 2.23.3
- Docker 27.5.1
- Docker Compose v2 2.32.2
- Docker-wincred 0.9.4
- ghc 9.12.2
- Git 2.52.0.windows.1
- Git 2.51.2.windows.1
- Git LFS 3.7.1
- ImageMagick 7.1.2-8
- InnoSetup 6.6.1
- InnoSetup 6.5.4
- jq 1.8.1
- Kind 0.30.0
- Kubectl 1.34.2
- Kubectl 1.34.1
- Mercurial 6.3.1
- gcc 14.2.0
- gdb 16.2
@@ -77,7 +77,7 @@
- NSIS 3.10
- OpenSSL 3.6.0
- Packer 1.14.2
- Pulumi 3.207.0
- Pulumi 3.205.0
- R 4.5.2
- Service Fabric SDK 10.1.2493.9590
- Stack 3.7.1
@@ -88,37 +88,37 @@
- WiX Toolset 3.14.1.8722
- yamllint 1.37.1
- zstd 1.5.7
- Ninja 1.13.2
- Ninja 1.13.1
### CLI Tools
- Alibaba Cloud CLI 3.1.5
- AWS CLI 2.32.4
- AWS SAM CLI 1.148.0
- AWS Session Manager CLI 1.2.764.0
- Azure CLI 2.80.0
- Alibaba Cloud CLI 3.1.0
- 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 DevOps CLI extension 1.0.2
- GitHub CLI 2.83.1
- GitHub CLI 2.82.1
### Rust Tools
- Cargo 1.91.1
- Rust 1.91.1
- Rustdoc 1.91.1
- Cargo 1.91.0
- Rust 1.91.0
- Rustdoc 1.91.0
- Rustup 1.28.2
#### Packages
- bindgen 0.72.1
- cargo-audit 0.22.0
- cargo-audit 0.21.2
- cargo-outdated 0.17.0
- cbindgen 0.29.2
- Clippy 0.1.91
- Rustfmt 1.8.0
### Browsers and Drivers
- Google Chrome 142.0.7444.176
- Chrome Driver 142.0.7444.175
- Microsoft Edge 142.0.3595.94
- Microsoft Edge Driver 142.0.3595.94
- Mozilla Firefox 145.0.2
- 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
- Gecko Driver 0.36.0
- IE Driver 4.14.0.0
- Selenium server 4.38.0
@@ -162,13 +162,13 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
#### Go
- 1.22.12
- 1.23.12
- 1.24.10
- 1.25.4
- 1.24.9
- 1.25.3
#### Node.js
- 20.19.5
- 22.21.1
- 24.11.1
- 24.11.0
#### Python
- 3.9.13
@@ -196,7 +196,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| Property | Value |
| -------------------- | ---------------------------------------------------------------------------------------------------------------------- |
| ServiceName | postgresql-x64-14 |
| Version | 14.20 |
| 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 |
@@ -207,7 +207,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
#### MongoDB
| Version | ServiceName | ServiceStatus | ServiceStartType |
| -------- | ----------- | ------------- | ---------------- |
| 7.0.26.0 | MongoDB | Stopped | Disabled |
| 7.0.25.0 | MongoDB | Stopped | Disabled |
### Database tools
- Azure CosmosDb Emulator 2.14.25.0
@@ -227,7 +227,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
### Visual Studio Enterprise 2022
| Name | Version | Path |
| ----------------------------- | ------------- | -------------------------------------------------------- |
| Visual Studio Enterprise 2022 | 17.14.36717.8 | C:\Program Files\Microsoft Visual Studio\2022\Enterprise |
| Visual Studio Enterprise 2022 | 17.14.36623.8 | C:\Program Files\Microsoft Visual Studio\2022\Enterprise |
#### Workloads, components and extensions
| Package | Version |
@@ -238,7 +238,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| 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.36716.0 |
| 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 |
@@ -246,19 +246,19 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| Component.Microsoft.VisualStudio.Web.AzureFunctions | 17.14.36510.44 |
| Component.Microsoft.Web.LibraryManager | 17.14.36510.44 |
| Component.Microsoft.WebTools.BrowserLink.WebLivePreview | 17.14.2.50506 |
| Component.Microsoft.Windows.DriverKit | 10.0.26100.15 |
| 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.36716.0 |
| Component.VisualStudio.GitHub.Copilot | 17.14.36621.7 |
| 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.36705.20 |
| ComponentGroup.Microsoft.NET.AppModernization | 17.14.36614.33 |
| ios | 26.0.9752.0 |
| maccatalyst | 26.0.9752.0 |
| maui.blazor | 9.0.111.6930 |
@@ -288,19 +288,19 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| 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.1125.51309 |
| microsoft.net.runtime.android.aot | 9.0.1125.51309 |
| microsoft.net.runtime.android.aot.net8 | 9.0.1125.51309 |
| microsoft.net.runtime.android.net8 | 9.0.1125.51309 |
| microsoft.net.runtime.ios | 9.0.1125.51309 |
| microsoft.net.runtime.maccatalyst | 9.0.1125.51309 |
| microsoft.net.runtime.mono.tooling | 9.0.1125.51309 |
| microsoft.net.runtime.mono.tooling.net8 | 9.0.1125.51309 |
| microsoft.net.sdk.emscripten | 9.0.13.1604 |
| 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.36705.7 |
| Microsoft.NetCore.Component.Runtime.9.0 | 17.14.36717.8 |
| Microsoft.NetCore.Component.SDK | 17.14.36717.8 |
| 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 |
@@ -322,6 +322,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| 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 |
@@ -402,7 +403,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| 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.36705.7 |
| 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 |
@@ -439,10 +440,10 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| Microsoft.VisualStudio.Workload.DataScience | 17.14.36015.10 |
| Microsoft.VisualStudio.Workload.ManagedDesktop | 17.14.36518.2 |
| Microsoft.VisualStudio.Workload.ManagedGame | 17.14.36301.6 |
| Microsoft.VisualStudio.Workload.NativeCrossPlat | 17.14.36716.0 |
| Microsoft.VisualStudio.Workload.NativeCrossPlat | 17.14.36526.15 |
| Microsoft.VisualStudio.Workload.NativeDesktop | 17.14.36517.7 |
| Microsoft.VisualStudio.Workload.NativeGame | 17.14.36331.10 |
| Microsoft.VisualStudio.Workload.NativeMobile | 17.14.36716.0 |
| 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 |
@@ -450,16 +451,16 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| 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.1125.51309 |
| runtimes.maccatalyst | 9.0.1125.51309 |
| wasm.tools | 9.0.1125.51309 |
| ProBITools.MicrosoftAnalysisServicesModelingProjects2022 | 4.0.0 |
| ProBITools.MicrosoftReportProjectsforVisualStudio2022 | 4.0.0 |
| runtimes.ios | 9.0.1025.47515 |
| runtimes.maccatalyst | 9.0.1025.47515 |
| wasm.tools | 9.0.1025.47515 |
| ProBITools.MicrosoftAnalysisServicesModelingProjects2022 | 3.0.4 |
| ProBITools.MicrosoftReportProjectsforVisualStudio2022 | 3.0.1 |
| SSIS.MicrosoftDataToolsIntegrationServices | 2.0 |
| VisualStudioClient.MicrosoftVisualStudio2022InstallerProjects | 2.0.1 |
| Windows Driver Kit | 10.1.26100.4202 |
| Windows Driver Kit Visual Studio Extension | 10.0.26100.15 |
| Windows Software Development Kit | 10.1.26100.6901 |
| Windows Driver Kit Visual Studio Extension | 10.0.26100.12 |
| Windows Software Development Kit | 10.1.26100.6584 |
| WixToolset.WixToolsetVisualStudio2022Extension | 1.0.0.22 |
#### Microsoft Visual C++
@@ -481,19 +482,19 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
- 10.0.26100.0
### .NET Core Tools
- .NET Core SDK: 8.0.122, 8.0.206, 8.0.319, 8.0.416, 9.0.112, 9.0.205, 9.0.308, 10.0.100
- .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 Framework: 4.7.2, 4.8, 4.8.1
- Microsoft.AspNetCore.App: 6.0.40, 8.0.6, 8.0.22, 9.0.6, 9.0.11, 10.0.0
- Microsoft.NETCore.App: 6.0.40, 8.0.6, 8.0.22, 9.0.6, 9.0.11, 10.0.0
- Microsoft.WindowsDesktop.App: 8.0.6, 8.0.22, 9.0.6, 9.0.11, 10.0.0
- nbgv 3.9.50+6feeb89450
- 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
### PowerShell Tools
- PowerShell 7.4.13
#### Powershell Modules
- Az: 12.5.0
- AWSPowershell: 5.0.104
- AWSPowershell: 5.0.88
- DockerMsftProvider: 1.0.0.8
- MarkdownPS: 1.10
- Microsoft.Graph: 2.32.0
@@ -513,10 +514,10 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| 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.22.1<br>3.31.5<br>4.1.2 |
| 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<br>29.0.14206865 |
| NDK | 26.3.11579264<br>27.3.13750724<br>28.2.13676358 |
#### Environment variables
| Name | Value |
@@ -524,7 +525,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| ANDROID_HOME | C:\Android\android-sdk |
| ANDROID_NDK | C:\Android\android-sdk\ndk\27.3.13750724 |
| ANDROID_NDK_HOME | C:\Android\android-sdk\ndk\27.3.13750724 |
| ANDROID_NDK_LATEST_HOME | C:\Android\android-sdk\ndk\29.0.14206865 |
| ANDROID_NDK_LATEST_HOME | C:\Android\android-sdk\ndk\28.2.13676358 |
| ANDROID_NDK_ROOT | C:\Android\android-sdk\ndk\27.3.13750724 |
| ANDROID_SDK_ROOT | C:\Android\android-sdk |
@@ -534,6 +535,6 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| 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:0738c9dea37ea0d146c978f6cd384be80c99916c46702c24817a47f5e869d1a9 | 2025-11-05 |
| mcr.microsoft.com/windows/servercore:ltsc2022 | sha256:3a2a2fdfbae2f720f6fe26f2d7680146712ce330f605b02a61d624889735c72e | 2025-11-05 |
| mcr.microsoft.com/windows/nanoserver:ltsc2022 | sha256:307874138e4dc064d0538b58c6f028419ab82fb15fcabaf6d5378ba32c235266 | 2025-10-22 |
| mcr.microsoft.com/windows/servercore:ltsc2022 | sha256:f51004008a2017ce3905fe7e1985d5aff62e596c4ab4111caad6d3cf33aa5cf1 | 2025-10-22 |
+70 -69
View File
@@ -3,8 +3,8 @@
| [[Ubuntu & Windows] Four tools scheduled for deprecation on November 3, 2025](https://github.com/actions/runner-images/issues/12898) |
***
# Windows Server 2025
- OS Version: 10.0.26100 Build 7171
- Image Version: 20251125.122.1
- OS Version: 10.0.26100 Build 6905
- Image Version: 20251102.77.1
## Windows features
- Windows Subsystem for Linux (WSLv1): Enabled
@@ -14,27 +14,27 @@
### Language and Runtime
- Bash 5.2.37(1)-release
- Go 1.24.10
- Go 1.24.9
- Julia 1.12.0
- Kotlin 2.2.21
- LLVM 20.1.8
- Node 22.21.1
- Perl 5.42.0
- PHP 8.4.15
- PHP 8.4.14
- Python 3.9.13
- Ruby 3.3.10
### Package Management
- Chocolatey 2.5.1
- Composer 2.9.2
- Helm 4.0.0
- 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
- NuGet 7.0.0.289
- NuGet 6.14.0.116
- pip 25.3 (python 3.9)
- Pipx 1.8.0
- RubyGems 3.5.22
- Vcpkg (build from commit 9aee6e968f)
- Vcpkg (build from commit e3ed41868d)
- Yarn 1.22.22
#### Environment variables
@@ -55,28 +55,28 @@
- azcopy 10.31.0
- Bazel 8.4.2
- Bazelisk 1.26.0
- Bicep 0.39.26
- Bicep 0.38.33
- Cabal 3.16.0.0
- CMake 3.31.6
- CodeQL Action Bundle 2.23.6
- CodeQL Action Bundle 2.23.3
- Docker 27.5.1
- Docker Compose v2 2.32.2
- Docker-wincred 0.9.4
- ghc 9.12.2
- Git 2.52.0.windows.1
- Git 2.51.2.windows.1
- Git LFS 3.7.1
- ImageMagick 7.1.2-8
- InnoSetup 6.6.1
- InnoSetup 6.5.4
- jq 1.8.1
- Kind 0.30.0
- Kubectl 1.34.2
- Kubectl 1.34.1
- gcc 15.2.0
- gdb 16.3
- GNU Binutils 2.45
- Newman 6.2.1
- OpenSSL 3.6.0
- Packer 1.14.2
- Pulumi 3.207.0
- Pulumi 3.205.0
- R 4.5.2
- Service Fabric SDK 10.1.2493.9590
- Stack 3.7.1
@@ -86,20 +86,20 @@
- WiX Toolset 3.14.1.8722
- yamllint 1.37.1
- zstd 1.5.7
- Ninja 1.13.2
- Ninja 1.13.1
### CLI Tools
- AWS CLI 2.32.4
- AWS SAM CLI 1.148.0
- AWS Session Manager CLI 1.2.764.0
- Azure CLI 2.80.0
- 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 DevOps CLI extension 1.0.2
- GitHub CLI 2.83.1
- GitHub CLI 2.82.1
### Rust Tools
- Cargo 1.91.1
- Rust 1.91.1
- Rustdoc 1.91.1
- Cargo 1.91.0
- Rust 1.91.0
- Rustdoc 1.91.0
- Rustup 1.28.2
#### Packages
@@ -107,11 +107,11 @@
- Rustfmt 1.8.0
### Browsers and Drivers
- Google Chrome 142.0.7444.176
- Chrome Driver 142.0.7444.175
- Microsoft Edge 142.0.3595.94
- Microsoft Edge Driver 142.0.3595.94
- Mozilla Firefox 145.0.2
- 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
- Gecko Driver 0.36.0
- IE Driver 4.14.0.0
- Selenium server 4.38.0
@@ -155,13 +155,13 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
#### Go
- 1.22.12
- 1.23.12
- 1.24.10
- 1.25.4
- 1.24.9
- 1.25.3
#### Node.js
- 20.19.5
- 22.21.1
- 24.11.1
- 24.11.0
#### Python
- 3.9.13
@@ -186,7 +186,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| Property | Value |
| -------------------- | ---------------------------------------------------------------------------------------------------------------------- |
| ServiceName | postgresql-x64-17 |
| Version | 17.7 |
| 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 |
@@ -197,7 +197,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
#### MongoDB
| Version | ServiceName | ServiceStatus | ServiceStartType |
| -------- | ----------- | ------------- | ---------------- |
| 7.0.26.0 | MongoDB | Stopped | Disabled |
| 7.0.25.0 | MongoDB | Stopped | Disabled |
### Database tools
- Azure CosmosDb Emulator 2.14.25.0
@@ -217,7 +217,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
### Visual Studio Enterprise 2022
| Name | Version | Path |
| ----------------------------- | ------------- | -------------------------------------------------------- |
| Visual Studio Enterprise 2022 | 17.14.36717.8 | C:\Program Files\Microsoft Visual Studio\2022\Enterprise |
| Visual Studio Enterprise 2022 | 17.14.36623.8 | C:\Program Files\Microsoft Visual Studio\2022\Enterprise |
#### Workloads, components and extensions
| Package | Version |
@@ -228,7 +228,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| 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.36716.0 |
| 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 |
@@ -236,16 +236,16 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| Component.Microsoft.VisualStudio.Web.AzureFunctions | 17.14.36510.44 |
| Component.Microsoft.Web.LibraryManager | 17.14.36510.44 |
| Component.Microsoft.WebTools.BrowserLink.WebLivePreview | 17.14.2.50506 |
| Component.Microsoft.Windows.DriverKit | 10.0.26100.15 |
| 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.36716.0 |
| Component.VisualStudio.GitHub.Copilot | 17.14.36621.7 |
| 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.36705.20 |
| ComponentGroup.Microsoft.NET.AppModernization | 17.14.36614.33 |
| ios | 26.0.9752.0 |
| maccatalyst | 26.0.9752.0 |
| maui.blazor | 9.0.111.6930 |
@@ -274,19 +274,19 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| 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.1125.51309 |
| microsoft.net.runtime.android.aot | 9.0.1125.51309 |
| microsoft.net.runtime.android.aot.net8 | 9.0.1125.51309 |
| microsoft.net.runtime.android.net8 | 9.0.1125.51309 |
| microsoft.net.runtime.ios | 9.0.1125.51309 |
| microsoft.net.runtime.maccatalyst | 9.0.1125.51309 |
| microsoft.net.runtime.mono.tooling | 9.0.1125.51309 |
| microsoft.net.runtime.mono.tooling.net8 | 9.0.1125.51309 |
| microsoft.net.sdk.emscripten | 9.0.13.1604 |
| 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.36705.7 |
| Microsoft.NetCore.Component.Runtime.9.0 | 17.14.36717.8 |
| Microsoft.NetCore.Component.SDK | 17.14.36717.8 |
| 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 |
@@ -308,6 +308,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| 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 |
@@ -386,7 +387,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| 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.36705.7 |
| 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 |
@@ -423,10 +424,10 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| Microsoft.VisualStudio.Workload.DataScience | 17.14.36015.10 |
| Microsoft.VisualStudio.Workload.ManagedDesktop | 17.14.36518.2 |
| Microsoft.VisualStudio.Workload.ManagedGame | 17.14.36301.6 |
| Microsoft.VisualStudio.Workload.NativeCrossPlat | 17.14.36716.0 |
| Microsoft.VisualStudio.Workload.NativeCrossPlat | 17.14.36526.15 |
| Microsoft.VisualStudio.Workload.NativeDesktop | 17.14.36517.7 |
| Microsoft.VisualStudio.Workload.NativeGame | 17.14.36331.10 |
| Microsoft.VisualStudio.Workload.NativeMobile | 17.14.36716.0 |
| 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 |
@@ -434,15 +435,15 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| 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.1125.51309 |
| runtimes.maccatalyst | 9.0.1125.51309 |
| wasm.tools | 9.0.1125.51309 |
| ProBITools.MicrosoftAnalysisServicesModelingProjects2022 | 4.0.0 |
| ProBITools.MicrosoftReportProjectsforVisualStudio2022 | 4.0.0 |
| runtimes.ios | 9.0.1025.47515 |
| runtimes.maccatalyst | 9.0.1025.47515 |
| wasm.tools | 9.0.1025.47515 |
| ProBITools.MicrosoftAnalysisServicesModelingProjects2022 | 3.0.4 |
| ProBITools.MicrosoftReportProjectsforVisualStudio2022 | 3.0.1 |
| SSIS.MicrosoftDataToolsIntegrationServices | 2.0 |
| VisualStudioClient.MicrosoftVisualStudio2022InstallerProjects | 2.0.1 |
| Windows Driver Kit Visual Studio Extension | 10.0.26100.15 |
| Windows Software Development Kit | 10.1.26100.6901 |
| Windows Driver Kit Visual Studio Extension | 10.0.26100.12 |
| Windows Software Development Kit | 10.1.26100.6584 |
| WixToolset.WixToolsetVisualStudio2022Extension | 1.0.0.22 |
#### Microsoft Visual C++
@@ -461,19 +462,19 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
- 10.0.26100.0
### .NET Core Tools
- .NET Core SDK: 8.0.122, 8.0.206, 8.0.319, 8.0.416, 9.0.112, 9.0.205, 9.0.308, 10.0.100
- .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 Framework: 4.8, 4.8.1
- Microsoft.AspNetCore.App: 8.0.6, 8.0.22, 9.0.6, 9.0.11, 10.0.0
- Microsoft.NETCore.App: 8.0.6, 8.0.22, 9.0.6, 9.0.11, 10.0.0
- Microsoft.WindowsDesktop.App: 8.0.6, 8.0.22, 9.0.6, 9.0.11, 10.0.0
- nbgv 3.9.50+6feeb89450
- 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
### PowerShell Tools
- PowerShell 7.4.13
#### Powershell Modules
- Az: 12.5.0
- AWSPowershell: 5.0.104
- AWSPowershell: 5.0.88
- DockerMsftProvider: 1.0.0.8
- MarkdownPS: 1.10
- Microsoft.Graph: 2.32.0
@@ -493,10 +494,10 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| 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.30.5<br>3.31.5<br>4.1.2 |
| 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<br>29.0.14206865 |
| NDK | 26.3.11579264<br>27.3.13750724<br>28.2.13676358 |
#### Environment variables
| Name | Value |
@@ -504,7 +505,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
| ANDROID_HOME | C:\Android\android-sdk |
| ANDROID_NDK | C:\Android\android-sdk\ndk\27.3.13750724 |
| ANDROID_NDK_HOME | C:\Android\android-sdk\ndk\27.3.13750724 |
| ANDROID_NDK_LATEST_HOME | C:\Android\android-sdk\ndk\29.0.14206865 |
| ANDROID_NDK_LATEST_HOME | C:\Android\android-sdk\ndk\28.2.13676358 |
| ANDROID_NDK_ROOT | C:\Android\android-sdk\ndk\27.3.13750724 |
| ANDROID_SDK_ROOT | C:\Android\android-sdk |