From 36d33f82c7cb133bd0d3634452e5cc08cc3633d4 Mon Sep 17 00:00:00 2001 From: Wes Haggard Date: Wed, 15 Jan 2025 08:34:09 -0800 Subject: [PATCH] Remove downloading of java.gdnbaseline file That file was removed with PR https://github.com/Azure/azure-sdk-for-java/pull/43773 so we need to stop trying to download it. --- .../templates/steps/download-credscan-suppressions.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/eng/pipelines/templates/steps/download-credscan-suppressions.yml b/eng/pipelines/templates/steps/download-credscan-suppressions.yml index bb56a50e30f4..7e89c3794d93 100644 --- a/eng/pipelines/templates/steps/download-credscan-suppressions.yml +++ b/eng/pipelines/templates/steps/download-credscan-suppressions.yml @@ -8,7 +8,5 @@ steps: $req = Invoke-WebRequest https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/eng/CredScanSuppression.json $req.RawContent | Out-File eng/CredScanSuppression.json - $req2 = Invoke-WebRequest https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/eng/java.gdnbaselines - $req2.RawContent | Out-File eng/java.gdnbaselines workingDirectory: $(Build.SourcesDirectory) displayName: Set credscan suppression/baseline file