From e1dfaddf5cec1b702ca123d3734d05dcb3c5a4e5 Mon Sep 17 00:00:00 2001 From: Seth Hoenig Date: Thu, 9 Feb 2023 10:26:10 -0600 Subject: [PATCH] tests: reduce timeout on test-api (#16107) Sometimes GHA gets wedged, and there is no need to waste 30 minutes on a job that usually takes < 3. e.g. stuck loading module cache, which is out of our control https://github.com/hashicorp/nomad/actions/runs/4135098558/jobs/7147128419 --- .github/workflows/test-core.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-core.yaml b/.github/workflows/test-core.yaml index 70ddb21bd..b067034e5 100644 --- a/.github/workflows/test-core.yaml +++ b/.github/workflows/test-core.yaml @@ -88,7 +88,7 @@ jobs: tests-api: needs: [mods] runs-on: [custom, xl, 22.04] - timeout-minutes: 30 + timeout-minutes: 8 steps: - uses: actions/checkout@v3 - uses: hashicorp/setup-golang@v1