From d728bd30ccb1d88584ad1083ba9961138442b1b7 Mon Sep 17 00:00:00 2001 From: "Ehsan.Asadi" Date: Tue, 30 Dec 2025 23:25:18 +0330 Subject: [PATCH] fix: disable provenance/sbom in base image stage like app stage Problem: base stage had provenance/cache that app doesn't Solution: Match base settings to app settings Both stages now: provenance: false sbom: false This matches what worked before! --- .woodpecker.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 92d82e5..a804b32 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -43,8 +43,9 @@ steps: - org.opencontainers.image.title=Peikarband Base - org.opencontainers.image.description=Base image with Python, Node.js, bun, and build tools - cache: inline - provenance: true + pull: true + provenance: false + sbom: false push: true timeout: 30m