From 38345dce3d475a064f5dd6557553fc0ffa2795dc Mon Sep 17 00:00:00 2001 From: Alex Chan Date: Thu, 16 Jul 2026 13:30:36 +0100 Subject: [PATCH] .github: double the timeout for `go vet` in CI The job is consistently failing on main when it hits the 5 minute timeout; let's double it to get useful results. Updates #cleanup Change-Id: Iaff2f95d4944929e6832273c94d628f376e2d30e Signed-off-by: Alex Chan --- .github/workflows/vet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/vet.yml b/.github/workflows/vet.yml index 2af8f24b5..d8f8e98a4 100644 --- a/.github/workflows/vet.yml +++ b/.github/workflows/vet.yml @@ -24,7 +24,7 @@ on: jobs: vet: runs-on: ubuntu-24.04 - timeout-minutes: 5 + timeout-minutes: 10 steps: - name: Check out code