ci: Use ubuntu-slim for [meta] runners

They should be sufficient for the task, and are based on containers, so
may be minimally faster to schedule. Ref:
https://docs.github.com/en/actions/reference/runners/github-hosted-runners#single-cpu-runners
This commit is contained in:
MarcoFalke
2026-02-05 19:52:53 +01:00
parent fa9627af9f
commit fa90277d22

View File

@@ -31,7 +31,7 @@ defaults:
jobs:
runners:
name: '[meta] determine runners'
runs-on: ubuntu-latest
runs-on: ubuntu-slim
outputs:
provider: ${{ steps.runners.outputs.provider }}
steps:
@@ -305,7 +305,7 @@ jobs:
# Record frozen commit, so that the native tests on cross-builds can run on
# the exact same commit id of the build.
name: '[meta] record frozen commit'
runs-on: ubuntu-latest
runs-on: ubuntu-slim
outputs:
commit: ${{ steps.record-commit.outputs.commit }}
steps: