Skip to content

Commit fd7042c

Browse files
authored
chore: use ubuntu-slim for lightweight jobs (#760)
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 a6f29f2 commit fd7042c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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/go-release-docs.yml

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

3737
jobs:
3838
build:
39-
runs-on: ubuntu-latest
39+
runs-on: ubuntu-slim
4040
permissions:
4141
contents: write
4242
steps:

.github/workflows/labeler.yml

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

2525
jobs:
2626
triage:
27-
runs-on: ubuntu-22.04
27+
runs-on: ubuntu-slim
2828
steps:
2929
- uses: actions/labeler@v4
3030
with:

0 commit comments

Comments
 (0)