mirror of
https://github.com/lightpanda-io/browser.git
synced 2026-06-11 01:25:53 -04:00
Replace `grep '"id":N' | jq -e ...` with `jq -ec 'select(.id == N) | ...'`. The grep form also matched `"id":10`, `"id":11`, ... and any tool description containing that substring; numeric `select` is type-correct. `jq -e` still fails the job when `select` produces no output (exit 4), so the smoke semantics are preserved. Also add `jq --version` up front so the job fails fast and loud if the `ubuntu-latest` image ever stops shipping jq.