diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml
index a795c82435c..bd917a4cf87 100644
--- a/eng/Version.Details.xml
+++ b/eng/Version.Details.xml
@@ -83,25 +83,25 @@
-
+
https://github.com/dotnet/arcade
- 3dd12f0a1d25fa29b84e38b7d2345a693f4ae45e
+ 809cbb58dea1d1e477ab0e12855d1758d50844a8
-
+
https://github.com/dotnet/arcade
- 3dd12f0a1d25fa29b84e38b7d2345a693f4ae45e
+ 809cbb58dea1d1e477ab0e12855d1758d50844a8
-
+
https://github.com/dotnet/arcade
- 3dd12f0a1d25fa29b84e38b7d2345a693f4ae45e
+ 809cbb58dea1d1e477ab0e12855d1758d50844a8
-
+
https://github.com/dotnet/arcade
- 3dd12f0a1d25fa29b84e38b7d2345a693f4ae45e
+ 809cbb58dea1d1e477ab0e12855d1758d50844a8
-
+
https://github.com/dotnet/arcade
- 3dd12f0a1d25fa29b84e38b7d2345a693f4ae45e
+ 809cbb58dea1d1e477ab0e12855d1758d50844a8
diff --git a/eng/Versions.props b/eng/Versions.props
index 2dc4ffe3ff1..d8623491f2f 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -39,9 +39,9 @@
- 6.0.0-beta.21424.3
- 6.0.0-beta.21424.3
- 6.0.0-beta.21424.3
+ 6.0.0-beta.21425.3
+ 6.0.0-beta.21425.3
+ 6.0.0-beta.21425.3
diff --git a/eng/common/post-build/sourcelink-validation.ps1 b/eng/common/post-build/sourcelink-validation.ps1
index 3b6fc953337..e8ab29afeb3 100644
--- a/eng/common/post-build/sourcelink-validation.ps1
+++ b/eng/common/post-build/sourcelink-validation.ps1
@@ -107,8 +107,12 @@ $ValidatePackage = {
try {
$Uri = $Link -as [System.URI]
- # Only GitHub links are valid
- if ($Uri.AbsoluteURI -ne $null -and ($Uri.Host -match 'github' -or $Uri.Host -match 'githubusercontent')) {
+ if ($Link -match "submodules") {
+ # Skip submodule links until sourcelink properly handles submodules
+ $Status = 200
+ }
+ elseif ($Uri.AbsoluteURI -ne $null -and ($Uri.Host -match 'github' -or $Uri.Host -match 'githubusercontent')) {
+ # Only GitHub links are valid
$Status = (Invoke-WebRequest -Uri $Link -UseBasicParsing -Method HEAD -TimeoutSec 5).StatusCode
}
else {
diff --git a/global.json b/global.json
index 06b54b345bf..4bcd2072cc5 100644
--- a/global.json
+++ b/global.json
@@ -12,8 +12,8 @@
}
},
"msbuild-sdks": {
- "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21424.3",
- "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21424.3"
+ "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21425.3",
+ "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21425.3"
},
"sdk": {
"version": "6.0.100-rc.1.21416.15"