From 83c7e4e5874336e99a72aab7def3de586e546a22 Mon Sep 17 00:00:00 2001 From: David Taylor Date: Wed, 28 Aug 2024 10:19:59 +0100 Subject: [PATCH] Increase timeout for scheduled build job (#845) Now that base & dev images are built in the same job, we need a little more time --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b3368d7..712793a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,7 +35,7 @@ jobs: strategy: matrix: arch: [amd64, arm64] - timeout-minutes: ${{ (github.event_name == 'schedule' && 60) || ((matrix.arch == 'arm64' && 45) || 30) }} + timeout-minutes: ${{ (github.event_name == 'schedule' && 90) || ((matrix.arch == 'arm64' && 45) || 30) }} needs: timestamp env: ARCH: ${{matrix.arch}} -- 2.25.1