From 7b114d7a3caf33c74161fc98cc52bec29f17d96f Mon Sep 17 00:00:00 2001 From: Michael Edgar Date: Tue, 3 Dec 2024 08:18:54 -0500 Subject: [PATCH] fix: Disable network access during build of operator catalog (#1264) Signed-off-by: Michael Edgar --- .github/workflows/integration.yml | 1 + .github/workflows/release.yml | 1 + .github/workflows/snapshot.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index e0fa5446c..c99ad81a8 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -125,6 +125,7 @@ jobs: with: context: operator/target/ platforms: ${{ env.PLATFORMS }} + network: none provenance: false push: true file: operator/target/catalog.Dockerfile diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e200bc02b..08dde6a93 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -123,6 +123,7 @@ jobs: with: context: target/checkout/operator/target/ platforms: ${{ env.PLATFORMS }} + network: none provenance: false push: true file: target/checkout/operator/target/catalog.Dockerfile diff --git a/.github/workflows/snapshot.yml b/.github/workflows/snapshot.yml index abdcf18b5..7c3d15d07 100644 --- a/.github/workflows/snapshot.yml +++ b/.github/workflows/snapshot.yml @@ -126,6 +126,7 @@ jobs: with: context: operator/target/ platforms: ${{ env.PLATFORMS }} + network: none provenance: false push: true file: operator/target/catalog.Dockerfile