@biffo/cli 0.196.0 → 0.196.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -23,6 +23,13 @@ jobs:
23
23
  lint:
24
24
  name: Lint
25
25
  runs-on: ${{ vars.RUNNER_LABEL || 'ubuntu-latest' }}
26
+ # A self-hosted spot runner that is reclaimed mid-job leaves the job hanging
27
+ # rather than failing: on 2026-07-30 five jobs across two PRs died with
28
+ # "The runner has received a shutdown signal", and without a timeout a job
29
+ # whose runner simply vanishes burns the 360-minute default before anyone
30
+ # is told. 20m is ~4x the slowest job observed across this repo and
31
+ # biffo-platform (JS, 5.4m), so a cold cache or a large PR will not trip it.
32
+ timeout-minutes: 20
26
33
  steps:
27
34
  - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
28
35
  - uses: astral-sh/setup-uv@v5
@@ -35,6 +42,7 @@ jobs:
35
42
  typecheck:
36
43
  name: Type Check
37
44
  runs-on: ${{ vars.RUNNER_LABEL || 'ubuntu-latest' }}
45
+ timeout-minutes: 20
38
46
  steps:
39
47
  - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
40
48
  - uses: astral-sh/setup-uv@v5
@@ -46,6 +54,7 @@ jobs:
46
54
  test:
47
55
  name: Test
48
56
  runs-on: ${{ vars.RUNNER_LABEL || 'ubuntu-latest' }}
57
+ timeout-minutes: 20
49
58
  steps:
50
59
  - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
51
60
  - uses: astral-sh/setup-uv@v5
@@ -61,6 +70,7 @@ jobs:
61
70
  validate-manifest:
62
71
  name: Validate biffo.plugin.json
63
72
  runs-on: ${{ vars.RUNNER_LABEL || 'ubuntu-latest' }}
73
+ timeout-minutes: 20
64
74
  steps:
65
75
  - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
66
76
  - uses: astral-sh/setup-uv@v5
@@ -101,6 +111,7 @@ jobs:
101
111
  security-secrets:
102
112
  name: Secret Scan
103
113
  runs-on: ${{ vars.RUNNER_LABEL || 'ubuntu-latest' }}
114
+ timeout-minutes: 20
104
115
  permissions:
105
116
  contents: read
106
117
  pull-requests: read
@@ -142,6 +153,7 @@ jobs:
142
153
  security-deps:
143
154
  name: Dependency Audit
144
155
  runs-on: ${{ vars.RUNNER_LABEL || 'ubuntu-latest' }}
156
+ timeout-minutes: 20
145
157
  steps:
146
158
  - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
147
159
  - uses: astral-sh/setup-uv@v5
@@ -42,6 +42,13 @@ jobs:
42
42
  # repos waiting forever on a context nothing reports.
43
43
  name: JS (lint, types, test, audit)
44
44
  runs-on: ${{ vars.RUNNER_LABEL || 'ubuntu-latest' }}
45
+ # A self-hosted spot runner that is reclaimed mid-job leaves the job hanging
46
+ # rather than failing: on 2026-07-30 five jobs across two PRs died with
47
+ # "The runner has received a shutdown signal", and without a timeout a job
48
+ # whose runner simply vanishes burns the 360-minute default before anyone
49
+ # is told. 20m is ~4x the slowest job observed across this repo and
50
+ # biffo-platform (JS, 5.4m), so a cold cache or a large PR will not trip it.
51
+ timeout-minutes: 20
45
52
  defaults:
46
53
  run:
47
54
  working-directory: apps/frontend
@@ -99,6 +106,7 @@ jobs:
99
106
  python:
100
107
  name: Python (lint, types, test, security)
101
108
  runs-on: ${{ vars.RUNNER_LABEL || 'ubuntu-latest' }}
109
+ timeout-minutes: 20
102
110
  defaults:
103
111
  run:
104
112
  working-directory: services/api
@@ -145,6 +153,7 @@ jobs:
145
153
  security-secrets:
146
154
  name: Secret Scan
147
155
  runs-on: ${{ vars.RUNNER_LABEL || 'ubuntu-latest' }}
156
+ timeout-minutes: 20
148
157
  permissions:
149
158
  contents: read
150
159
  pull-requests: read
@@ -186,6 +195,7 @@ jobs:
186
195
  infra-validate:
187
196
  name: Terraform Validate & Security
188
197
  runs-on: ${{ vars.RUNNER_LABEL || 'ubuntu-latest' }}
198
+ timeout-minutes: 20
189
199
  steps:
190
200
  - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
191
201
  - uses: hashicorp/setup-terraform@v4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@biffo/cli",
3
- "version": "0.196.0",
3
+ "version": "0.196.2",
4
4
  "description": "Biffo project scaffolding CLI",
5
5
  "license": "MIT",
6
6
  "type": "module",