From 9141bbd5ed0c7eaf2ce06e9decea75a737d6a39b Mon Sep 17 00:00:00 2001 From: Jakub Stejskal Date: Thu, 27 Aug 2026 22:01:08 +0200 Subject: [PATCH] Allow to configure max-in-parallel to make attests more stable Signed-off-by: Jakub Stejskal --- .github/workflows/reusable-attest.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/reusable-attest.yml b/.github/workflows/reusable-attest.yml index f58567c..c473b50 100644 --- a/.github/workflows/reusable-attest.yml +++ b/.github/workflows/reusable-attest.yml @@ -33,6 +33,11 @@ on: required: false type: string default: "" + maxParallel: + description: "Limits the parallel execution of container attestation" + required: false + type: number + default: 1 permissions: contents: read @@ -152,6 +157,7 @@ jobs: timeout-minutes: 10 strategy: fail-fast: false + max-parallel: ${{ inputs.maxParallel }} matrix: image: ${{ fromJSON(inputs.containerImages) }} steps: