Skip to content

Commit 3f37f56

Browse files
authored
chore: use ubuntu-slim for lightweight jobs (#3107)
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 3f37f56

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.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)