From 647204f1e4a35b67a5ac331477c41cecf6a56ad8 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 16 Nov 2024 13:03:28 +0000 Subject: [PATCH] Update dependencies from https://github.com/dotnet/arcade build 20241113.5 Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XUnitExtensions From Version 6.0.0-beta.24508.2 -> To Version 6.0.0-beta.24563.5 --- NuGet.config | 8 -------- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- .../steps/get-delegation-sas.yml | 11 ++++++++++- .../templates/steps/get-delegation-sas.yml | 11 ++++++++++- global.json | 4 ++-- 6 files changed, 32 insertions(+), 22 deletions(-) diff --git a/NuGet.config b/NuGet.config index 2cf8ca553dea..f7ac60470617 100644 --- a/NuGet.config +++ b/NuGet.config @@ -4,7 +4,6 @@ - @@ -12,13 +11,10 @@ - - - @@ -38,16 +34,12 @@ - - - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5ebea86aed6f..64b979578c37 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -299,22 +299,22 @@ - + https://github.com/dotnet/arcade - bb06ac242cf3faf5cef64127bdd11c3a4f060c06 + c8e0c31e05276243bdb22046c9abf46a959e8917 - + https://github.com/dotnet/arcade - bb06ac242cf3faf5cef64127bdd11c3a4f060c06 + c8e0c31e05276243bdb22046c9abf46a959e8917 - + https://github.com/dotnet/arcade - bb06ac242cf3faf5cef64127bdd11c3a4f060c06 + c8e0c31e05276243bdb22046c9abf46a959e8917 - + https://github.com/dotnet/arcade - bb06ac242cf3faf5cef64127bdd11c3a4f060c06 + c8e0c31e05276243bdb22046c9abf46a959e8917 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index e7a7f8cc8518..1d8ae6423bc5 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -30,7 +30,7 @@ 4.0.0 6.0.0 6.0.5 - 6.0.0-beta.24508.2 + 6.0.0-beta.24563.5 3.1.0 4.3.0 4.3.0 @@ -175,7 +175,7 @@ 4.19.2 4.19.0 - 6.0.0-beta.24508.2 + 6.0.0-beta.24563.5 4.8.2 6.0.0-beta.22262.1 diff --git a/eng/common/templates-official/steps/get-delegation-sas.yml b/eng/common/templates-official/steps/get-delegation-sas.yml index c0e8f91317f0..c690cc0a070c 100644 --- a/eng/common/templates-official/steps/get-delegation-sas.yml +++ b/eng/common/templates-official/steps/get-delegation-sas.yml @@ -28,7 +28,16 @@ steps: # Calculate the expiration of the SAS token and convert to UTC $expiry = (Get-Date).AddHours(${{ parameters.expiryInHours }}).ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ssZ") - $sas = az storage container generate-sas --account-name ${{ parameters.storageAccount }} --name ${{ parameters.container }} --permissions ${{ parameters.permissions }} --expiry $expiry --auth-mode login --as-user -o tsv + # Temporarily work around a helix issue where SAS tokens with / in them will cause incorrect downloads + # of correlation payloads. https://github.com/dotnet/dnceng/issues/3484 + $sas = "" + do { + $sas = az storage container generate-sas --account-name ${{ parameters.storageAccount }} --name ${{ parameters.container }} --permissions ${{ parameters.permissions }} --expiry $expiry --auth-mode login --as-user -o tsv + if ($LASTEXITCODE -ne 0) { + Write-Error "Failed to generate SAS token." + exit 1 + } + } while($sas.IndexOf('/') -ne -1) if ($LASTEXITCODE -ne 0) { Write-Error "Failed to generate SAS token." diff --git a/eng/common/templates/steps/get-delegation-sas.yml b/eng/common/templates/steps/get-delegation-sas.yml index c0e8f91317f0..c690cc0a070c 100644 --- a/eng/common/templates/steps/get-delegation-sas.yml +++ b/eng/common/templates/steps/get-delegation-sas.yml @@ -28,7 +28,16 @@ steps: # Calculate the expiration of the SAS token and convert to UTC $expiry = (Get-Date).AddHours(${{ parameters.expiryInHours }}).ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ssZ") - $sas = az storage container generate-sas --account-name ${{ parameters.storageAccount }} --name ${{ parameters.container }} --permissions ${{ parameters.permissions }} --expiry $expiry --auth-mode login --as-user -o tsv + # Temporarily work around a helix issue where SAS tokens with / in them will cause incorrect downloads + # of correlation payloads. https://github.com/dotnet/dnceng/issues/3484 + $sas = "" + do { + $sas = az storage container generate-sas --account-name ${{ parameters.storageAccount }} --name ${{ parameters.container }} --permissions ${{ parameters.permissions }} --expiry $expiry --auth-mode login --as-user -o tsv + if ($LASTEXITCODE -ne 0) { + Write-Error "Failed to generate SAS token." + exit 1 + } + } while($sas.IndexOf('/') -ne -1) if ($LASTEXITCODE -ne 0) { Write-Error "Failed to generate SAS token." diff --git a/global.json b/global.json index f6f5091a996e..a2c7c840506d 100644 --- a/global.json +++ b/global.json @@ -11,7 +11,7 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.24508.2", - "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.24508.2" + "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.24563.5", + "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.24563.5" } }