diff --git a/images/macos/macos-13-Readme.md b/images/macos/macos-13-Readme.md index 44ecb9767..0cc908be9 100644 --- a/images/macos/macos-13-Readme.md +++ b/images/macos/macos-13-Readme.md @@ -1,11 +1,11 @@ | Announcements | |-| -| [[Windows ,Ubuntu, MacOs ] Breaking change: Updating Azure PowerShell Module version as 12.5.x from 2025-07-04](https://github.com/actions/runner-images/issues/12333) | +| [[Windows, Ubuntu, MacOS] Breaking change: Updating Azure PowerShell Module version as 12.5.x from 2025-07-04](https://github.com/actions/runner-images/issues/12333) | *** # macOS 13 - OS Version: macOS 13.7.6 (22H625) - Kernel Version: Darwin 22.6.0 -- Image Version: 20250616.1247 +- Image Version: 20250623.1267 ## Installed Software @@ -33,13 +33,13 @@ - Carthage 0.40.0 - CocoaPods 1.16.2 - Composer 2.8.9 -- Homebrew 4.5.6 +- Homebrew 4.5.7 - NPM 10.8.2 - NuGet 6.3.1.1 - Pip3 25.1.1 (python 3.13) - Pipx 1.7.1 - RubyGems 3.6.9 -- Vcpkg 2025 (build from commit ef7dbf94b9) +- Vcpkg 2025 (build from commit 0cf34c184c) - Yarn 1.22.22 ### Project Management @@ -55,24 +55,24 @@ - bazelisk 1.26.0 - bsdtar 3.5.3 - available by 'tar' alias - Curl 8.14.1 -- Git 2.49.0 +- Git 2.50.0 - Git LFS 3.6.1 -- GitHub CLI 2.74.1 +- GitHub CLI 2.74.2 - GNU Tar 1.35 - available by 'gtar' alias - GNU Wget 1.25.0 - gpg (GnuPG) 2.4.8 - jq 1.8.0 - OpenSSL 1.1.1w 11 Sep 2023 - Packer 1.13.1 -- pkgconf 2.4.3 +- pkgconf 2.5.0 - Unxip 3.1 - yq 4.45.4 - zstd 1.5.7 -- Ninja 1.12.1 +- Ninja 1.13.0 ### Tools -- AWS CLI 2.27.35 -- AWS SAM CLI 1.140.0 +- AWS CLI 2.27.40 +- AWS SAM CLI 1.141.0 - AWS Session Manager CLI 1.2.707.0 - Azure CLI 2.74.0 - Azure CLI (azure-devops) 1.0.1 @@ -91,11 +91,11 @@ ### Browsers - Safari 18.5 (18621.2.5.18.1) - SafariDriver 18.5 (18621.2.5.18.1) -- Google Chrome 137.0.7151.104 -- Google Chrome for Testing 137.0.7151.70 -- ChromeDriver 137.0.7151.70 -- Microsoft Edge 137.0.3296.83 -- Microsoft Edge WebDriver 137.0.3296.83 +- Google Chrome 137.0.7151.120 +- Google Chrome for Testing 137.0.7151.119 +- ChromeDriver 137.0.7151.119 +- Microsoft Edge 137.0.3296.93 +- Microsoft Edge WebDriver 137.0.3296.93 - Mozilla Firefox 139.0.4 - geckodriver 0.36.0 - Selenium server 4.33.0 diff --git a/images/ubuntu/scripts/helpers/Common.Helpers.psm1 b/images/ubuntu/scripts/helpers/Common.Helpers.psm1 index ffefd2986..5f64d2b9e 100644 --- a/images/ubuntu/scripts/helpers/Common.Helpers.psm1 +++ b/images/ubuntu/scripts/helpers/Common.Helpers.psm1 @@ -129,7 +129,7 @@ function Invoke-DownloadWithRetry { for ($retries = 20; $retries -gt 0; $retries--) { try { $attemptStartTime = Get-Date - (New-Object System.Net.WebClient).DownloadFile($Url, $DestinationPath) + Invoke-WebRequest -Uri $Url -Outfile $DestinationPath $attemptSeconds = [math]::Round(($(Get-Date) - $attemptStartTime).TotalSeconds, 2) Write-Host "Package downloaded in $attemptSeconds seconds" break diff --git a/images/windows/scripts/build/Install-EdgeDriver.ps1 b/images/windows/scripts/build/Install-EdgeDriver.ps1 index fe196f465..95677b2ff 100644 --- a/images/windows/scripts/build/Install-EdgeDriver.ps1 +++ b/images/windows/scripts/build/Install-EdgeDriver.ps1 @@ -30,7 +30,8 @@ Expand-7ZipArchive -Path $archivePath -DestinationPath $edgeDriverPath $signatureThumbprint = @( "7920AC8FB05E0FFFE21E8FF4B4F03093BA6AC16E", "0BD8C56733FDCC06F8CB919FF5A200E39B1ACF71", - "F6EECCC7FF116889C2D5466AE7243D7AA7698689" + "F6EECCC7FF116889C2D5466AE7243D7AA7698689", + "6ACE61BAE3F09F4DD2697806D73E022CBFE70EB4" ) Test-FileSignature -Path "$edgeDriverPath\msedgedriver.exe" -ExpectedThumbprint $signatureThumbprint