From 5412d4b9a540f2d8059b52b0c52e6320da0b837f Mon Sep 17 00:00:00 2001 From: Alex Dewar Date: Tue, 28 Apr 2026 14:59:17 +0100 Subject: [PATCH] Fix: Extend timeout for docs deployment to 30 mins It's currently timing out while trying to build all the old versions of the docs. This isn't normally an issue as much of this work is cached, but without the cache it apparently takes longer than the 10 mins limit we currently have. Extend it to 30 mins. Fixes #1265. --- .github/workflows/deploy-docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index bdcd6044..46aff4dd 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -19,7 +19,7 @@ jobs: build: name: Build docs runs-on: ubuntu-latest - timeout-minutes: 10 + timeout-minutes: 30 steps: - name: Checkout repository uses: actions/checkout@v6