ci: use slim Ubuntu runners (#256)

It will be more environmentally friendly and cheaper (at least for GitHub, because it's a public project and GitHub pays for it, not you)

GitHub blog post about new 1 vCPU runners: https://github.blog/changelog/2025-10-28-1-vcpu-linux-runner-now-available-in-github-actions-in-public-preview

Pricing (tl;dr: $0.002/min): https://docs.github.com/en/billing/reference/actions-runner-pricing

GitHub-hosted runners reference: https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax#standard-github-hosted-runners-for--private-repositories
This commit is contained in:
Okinea Dev
2026-01-03 16:12:45 +01:00
committed by GitHub
parent 189bbfa9bc
commit aaef97a1ab
4 changed files with 4 additions and 4 deletions

View File

@@ -17,7 +17,7 @@ permissions:
jobs: jobs:
ci: ci:
runs-on: ubuntu-latest runs-on: ubuntu-slim
timeout-minutes: 10 timeout-minutes: 10
steps: steps:
- name: Checkout - name: Checkout

View File

@@ -19,7 +19,7 @@ permissions: {}
jobs: jobs:
deploy: deploy:
name: Deploy Docs name: Deploy Docs
runs-on: ubuntu-latest runs-on: ubuntu-slim
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v5 uses: actions/checkout@v5

View File

@@ -14,7 +14,7 @@ concurrency:
jobs: jobs:
lint-pr-title: lint-pr-title:
name: Lint PR title name: Lint PR title
runs-on: ubuntu-latest runs-on: ubuntu-slim
if: ${{ (github.event.action == 'opened' || github.event.changes.title != null) && github.actor != 'renovate[bot]' }} if: ${{ (github.event.action == 'opened' || github.event.changes.title != null) && github.actor != 'renovate[bot]' }}

View File

@@ -12,7 +12,7 @@ concurrency:
jobs: jobs:
release: release:
name: Release name: Release
runs-on: ubuntu-latest runs-on: ubuntu-slim
permissions: permissions:
id-token: write id-token: write