Skip to content

Commit d3a96f6

Browse files
committed
chore: use ubuntu-slim for lightweight jobs
ubuntu-slim is a new cost-efficient runner to fit lightweight jobs. We can use this to save ASF infra usage (if possible). By *lightweight* I mean jobs that run for less than a minute and are not easily affected by other concurrently running jobs on the same host. This topic was raised in the Apache ORC project and later adopted by iceberg-cpp. We believe it could also benefit other projects under the Apache Iceberg umbrella. Refs: - https://github.blog/changelog/2025-10-28-1-vcpu-linux-runner-now-available-in-github-actions-in-public-preview/ - https://github.com/actions/runner-images/blob/main/images/ubuntu-slim/ubuntu-slim-Readme.md
1 parent 4173ef7 commit d3a96f6

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/check-md-link.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ permissions:
3737

3838
jobs:
3939
markdown-link-check:
40-
runs-on: ubuntu-latest
40+
runs-on: ubuntu-slim
4141
steps:
4242
- uses: actions/checkout@master
4343
- uses: tcort/github-action-markdown-link-check@e7c7a18363c842693fadde5d41a3bd3573a7a225

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ permissions:
3333
jobs:
3434
analyze:
3535
name: Analyze Actions
36-
runs-on: ubuntu-latest
36+
runs-on: ubuntu-slim
3737
permissions:
3838
contents: read
3939
security-events: write

.github/workflows/python-ci-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ concurrency:
3535

3636
jobs:
3737
docs:
38-
runs-on: ubuntu-latest
38+
runs-on: ubuntu-slim
3939

4040
steps:
4141
- uses: actions/checkout@v6

0 commit comments

Comments
 (0)