From a85994684865d502904768e7b65e05b685d23bdb Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Thu, 23 Oct 2025 22:45:14 +0200 Subject: [PATCH] GitHub Actions: Increase timeout to 240 minutes for offline documentation builds Building the offline documentation 6 times (3 HTML, 3 ePub) takes a long time on a GitHub Actions shared runner. 3 hours doesn't always suffice anymore, so increasing it to 4 hours should fix CI failures for the foreseeable future. --- .github/workflows/build_offline_docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_offline_docs.yml b/.github/workflows/build_offline_docs.yml index 14b0a3b56af..80d61b51936 100644 --- a/.github/workflows/build_offline_docs.yml +++ b/.github/workflows/build_offline_docs.yml @@ -12,7 +12,7 @@ jobs: # Manual runs can still be triggered as normal. if: ${{ github.repository_owner == 'godotengine' || github.event_name != 'schedule' || vars.CI_OFFLINE_DOCS_CRON == 'true' }} runs-on: ubuntu-24.04 - timeout-minutes: 180 + timeout-minutes: 240 strategy: max-parallel: 1 fail-fast: false