From 95547a928f97d097c8b00e271750f7fd25c2f854 Mon Sep 17 00:00:00 2001 From: nicodes Date: Sat, 1 Aug 2026 19:57:54 -0600 Subject: [PATCH] Bound the release job Missed twice, and for the same reason both times: release.yml was reverted during the CI standardization -- deliberately, to keep the generic "Test before packaging" change off this repo's dual-artifact release -- and that revert took the pins and the timeout with it. The pins came back in the last pull request; this is the timeout. Co-Authored-By: Claude Opus 5 (1M context) --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5790d09..328c561 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,6 +27,9 @@ concurrency: release-${{ github.repository }}-${{ inputs.target }} jobs: release: runs-on: ubuntu-latest + # Bounded, so a step that hangs fails here rather than sitting until the + # runner's own timeout hours later. + timeout-minutes: 20 steps: - uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4 with: