Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ jobs:
- run: npx hereby lint

format:
runs-on: ubuntu-latest
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
Expand Down Expand Up @@ -301,7 +301,7 @@ jobs:
- run: git diff --staged --exit-code --stat

tidy:
runs-on: ubuntu-latest
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: ./.github/actions/setup-go
Expand Down Expand Up @@ -356,7 +356,7 @@ jobs:
- run: npx hereby check:scripts

required:
runs-on: ubuntu-latest
runs-on: ubuntu-slim
if: ${{ always() }}
Comment on lines 358 to 360
Copy link

Copilot AI Apr 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Switching required to ubuntu-slim increases the chance that preinstalled tooling differs from ubuntu-latest. This job’s only step pipes JSON into jq, but jq isn’t installed explicitly; if the slim runner image doesn’t include it, the workflow will fail. Consider installing jq in the job (or rewriting the check to avoid external tooling).

Copilot uses AI. Check for mistakes.
needs:
- build
Expand Down
Loading