Conversation
Greptile SummaryThis PR migrates all CI jobs from GitHub's standard Key changes:
Impact:
Confidence Score: 5/5
Important Files Changed
Last reviewed commit: 8482240 |
There was a problem hiding this comment.
Pull request overview
Updates the CI workflow to use Blacksmith-provided Ubuntu 24.04 runners instead of ubuntu-latest, aiming to speed up job execution across the pipeline.
Changes:
- Switch
runs-onfor all active CI jobs fromubuntu-latesttoblacksmith-4vcpu-ubuntu-2404. - Update the commented-out
testjob runner label to match the new runner.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| jobs: | ||
| scan_ruby: | ||
| runs-on: ubuntu-latest | ||
| runs-on: blacksmith-4vcpu-ubuntu-2404 |
There was a problem hiding this comment.
The runner label is repeated across multiple jobs. Consider defining it once (e.g., via a YAML anchor/alias or a top-level env + expression in runs-on) to avoid missed updates if the runner name changes again.
In theory at least, these should be way faster!