From 86c1454e3f858ce0310bf2d16b2c52f8b6f1db41 Mon Sep 17 00:00:00 2001 From: Sarah Oslund Date: Thu, 9 Apr 2026 14:50:50 -0700 Subject: [PATCH 1/3] fix: Replace networkIsolationPolicy with disableNetworkIsolation flag The 1ES Pipeline Templates updated the release tag to enforce stricter network isolation defaults, causing NuGet restore failures on Windows and Linux builds. Replace the deprecated networkIsolationPolicy: Permissive setting with featureFlags.disableNetworkIsolation: true, matching the approach already used in the release pipeline. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- pipelines/sbom-tool-main-build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pipelines/sbom-tool-main-build.yaml b/pipelines/sbom-tool-main-build.yaml index 7faf0d495..66fbc2fbc 100644 --- a/pipelines/sbom-tool-main-build.yaml +++ b/pipelines/sbom-tool-main-build.yaml @@ -31,8 +31,8 @@ variables: extends: template: v1/1ES.Official.PipelineTemplate.yml@1esPipelines parameters: - settings: - networkIsolationPolicy: Permissive + featureFlags: + disableNetworkIsolation: true sdl: sourceAnalysisPool: name: sbom-windows-build-pool From e07cdbd7bc5cd4fbf734a9d58012ba08425a9488 Mon Sep 17 00:00:00 2001 From: Sarah Oslund Date: Thu, 9 Apr 2026 15:14:07 -0700 Subject: [PATCH 2/3] Retrigger CI From 1144e435fe63a998a72a5a30d8dd0aa572935d44 Mon Sep 17 00:00:00 2001 From: Sarah Oslund Date: Thu, 9 Apr 2026 15:48:30 -0700 Subject: [PATCH 3/3] Retrigger CI