From 0a30b98447caba7f3208738b95c8271d66582a82 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Thu, 12 Jun 2025 10:20:25 +0200 Subject: [PATCH] gha: lower timeouts on "build" and "merge" steps We had some runs timeout after 120 minutes; expected duration is much lower than that, so let's lower the timeout to make actions fail faster. Signed-off-by: Sebastiaan van Stijn --- .github/workflows/bin-image.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bin-image.yml b/.github/workflows/bin-image.yml index 7ea775719e..dc0928d3d5 100644 --- a/.github/workflows/bin-image.yml +++ b/.github/workflows/bin-image.yml @@ -91,7 +91,7 @@ jobs: build: runs-on: ubuntu-24.04 - timeout-minutes: 120 # guardrails timeout for the whole job + timeout-minutes: 20 # guardrails timeout for the whole job needs: - validate-dco - prepare @@ -167,7 +167,7 @@ jobs: merge: runs-on: ubuntu-24.04 - timeout-minutes: 120 # guardrails timeout for the whole job + timeout-minutes: 40 # guardrails timeout for the whole job needs: - build if: always() && !contains(needs.*.result, 'failure') && !contains(needs.*.result, 'cancelled') && github.event_name != 'pull_request' && github.repository == 'moby/moby'