From 1a80afcfb5592cca46fc95974036822648e58b3b Mon Sep 17 00:00:00 2001 From: Franz Busch Date: Sat, 11 Oct 2025 17:10:47 +0200 Subject: [PATCH] Increase timeout of API breakage check The API breakage check has to build a project twice to detect the difference in API. This can easily hit the current timeout of 20 minutes for [larger projects](https://github.com/apple/swift-temporal-sdk/actions/runs/18406091287/job/52446247806). Increase the timeout to 40 minutes for now. --- .github/workflows/soundness.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/soundness.yml b/.github/workflows/soundness.yml index 16803325..9fc7ab76 100644 --- a/.github/workflows/soundness.yml +++ b/.github/workflows/soundness.yml @@ -95,7 +95,7 @@ jobs: runs-on: ubuntu-latest container: image: ${{ inputs.api_breakage_check_container_image }} - timeout-minutes: 20 + timeout-minutes: 40 steps: - name: Checkout repository uses: actions/checkout@v4