From 2855ad3745af871fae7c5fc25683621233c34a36 Mon Sep 17 00:00:00 2001
From: "dotnet-maestro[bot]"
<42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date: Sat, 28 Aug 2021 16:50:57 +0000
Subject: [PATCH] Update dependencies from https://github.com/dotnet/arcade
build 20210827.6 (#11729)
[release/6.0.1xx] Update dependencies from dotnet/arcade
- Coherency Updates:
- Microsoft.DotNet.XliffTasks: from 1.0.0-beta.21421.1 to 1.0.0-beta.21426.1 (parent: Microsoft.DotNet.Arcade.Sdk)
---
eng/Version.Details.xml | 16 ++++++++--------
eng/Versions.props | 2 +-
eng/common/post-build/sourcelink-validation.ps1 | 8 ++++++--
eng/common/templates/job/job.yml | 2 +-
global.json | 4 ++--
5 files changed, 18 insertions(+), 14 deletions(-)
diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml
index 4dad597b1..31bef6590 100644
--- a/eng/Version.Details.xml
+++ b/eng/Version.Details.xml
@@ -157,19 +157,19 @@
-
+
https://github.com/dotnet/arcade
- 65c6d2fae35c9e7166b3d50aa7061115ebe26cdb
+ 474307e526160c813c9fd58060eb8356ccca6099
-
+
https://github.com/dotnet/arcade
- 65c6d2fae35c9e7166b3d50aa7061115ebe26cdb
+ 474307e526160c813c9fd58060eb8356ccca6099
-
+
https://github.com/dotnet/arcade
- 65c6d2fae35c9e7166b3d50aa7061115ebe26cdb
+ 474307e526160c813c9fd58060eb8356ccca6099
https://github.com/dotnet/source-build-reference-packages
@@ -180,9 +180,9 @@
6dcc7d005e38829efb6714d2ecfc4c0cb383e7d9
-
+
https://github.com/dotnet/xliff-tasks
- 370da425b0478879d5f8f407b3e4db495bcdcc11
+ 22d8cfd8807ba8e4f2e32eeb9f207010ca5e6f6d
diff --git a/eng/Versions.props b/eng/Versions.props
index 13454dabf..4f7265453 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -20,7 +20,7 @@
- 6.0.0-beta.21425.1
+ 6.0.0-beta.21427.6
diff --git a/eng/common/post-build/sourcelink-validation.ps1 b/eng/common/post-build/sourcelink-validation.ps1
index 3b6fc9533..e8ab29afe 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/eng/common/templates/job/job.yml b/eng/common/templates/job/job.yml
index 866967934..37dceb1ba 100644
--- a/eng/common/templates/job/job.yml
+++ b/eng/common/templates/job/job.yml
@@ -103,7 +103,7 @@ jobs:
- ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
- ${{ if eq(parameters.enableMicrobuild, 'true') }}:
- - task: MicroBuildSigningPlugin@2
+ - task: MicroBuildSigningPlugin@3
displayName: Install MicroBuild plugin
inputs:
signType: $(_SignType)
diff --git a/global.json b/global.json
index 5965939f9..4807e3629 100644
--- a/global.json
+++ b/global.json
@@ -11,7 +11,7 @@
"cmake": "3.16.4"
},
"msbuild-sdks": {
- "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21425.1",
- "Microsoft.DotNet.CMake.Sdk": "6.0.0-beta.21425.1"
+ "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21427.6",
+ "Microsoft.DotNet.CMake.Sdk": "6.0.0-beta.21427.6"
}
}