From 22ae633cdc782a98fb5fbe63bb06dc17ba32aea2 Mon Sep 17 00:00:00 2001 From: Jim Radford Date: Sun, 29 Jan 2023 08:21:36 -0800 Subject: [PATCH] azure pipeines: change order of scans --- azure-pipelines.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index eae4efe..2436f3a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -17,10 +17,6 @@ variables: steps: - task: NuGetToolInstaller@1 -- task: NuGetCommand@2 - inputs: - restoreSolution: '$(solution)' - # Run Microsoft Security Utility on Source Repository - task: MicrosoftSecurityDevOps@1 displayName: 'Run Microsoft Security DevOps' @@ -33,6 +29,10 @@ steps: predefinedconfigfile: 'GitleaksUdmCombo.toml' reportformat: 'sarif' +- task: NuGetCommand@2 + inputs: + restoreSolution: '$(solution)' + - task: VSBuild@1 inputs: solution: '$(solution)'