ci: Bump script check runner size (#54615)

Since we build the workflows xtask on this runner, increasing the size
here to make that job faster.

Release Notes:

- N/A
This commit is contained in:
Finn Evers 2026-04-23 12:22:05 +02:00 committed by GitHub
parent 2ab32357a5
commit 72daa7d6d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -241,7 +241,7 @@ jobs:
timeout-minutes: 60
check_scripts:
if: (github.repository_owner == 'zed-industries' || github.repository_owner == 'zed-extensions')
runs-on: namespace-profile-2x4-ubuntu-2404
runs-on: namespace-profile-8x16-ubuntu-2204
steps:
- name: steps::checkout_repo
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd

View file

@ -705,7 +705,7 @@ jobs:
needs:
- orchestrate
if: needs.orchestrate.outputs.run_action_checks == 'true'
runs-on: namespace-profile-2x4-ubuntu-2404
runs-on: namespace-profile-8x16-ubuntu-2204
steps:
- name: steps::checkout_repo
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd

View file

@ -792,7 +792,7 @@ pub(crate) fn check_scripts() -> NamedJob {
named::job(
release_job(&[])
.runs_on(runners::LINUX_SMALL)
.runs_on(runners::LINUX_LARGE)
.add_step(steps::checkout_repo())
.add_step(run_shellcheck())
.add_step(download_actionlint().id("get_actionlint"))