This is an automated email from the ASF dual-hosted git repository. apupier pushed a commit to branch useubuntuSlimForSmallGitHubWorkflows in repository https://gitbox.apache.org/repos/asf/camel.git
commit 685a6e60043edf3dab0d824cc720ececf038ed5a Author: Aurélien Pupier <[email protected]> AuthorDate: Tue Sep 8 15:39:58 2026 +0200 Use ubuntu-slim for small gitHub Actions currently, the pool of available runners is often exhausted for Apache. Using ubuntu-slim should reduce time to switch between runners. It also costs less, so can be an argument to be able to increase the number of runners later. Note that it comes with some constraints, the amount of software installed is lower and the job should last less than 15 minutes. https://github.blog/changelog/2025-10-28-1-vcpu-linux-runner-now-available-in-github-actions-in-public-preview/#runner-details https://docs.github.com/en/billing/concepts/product-billing/github-actions?utm_source=changelog-docs-1-vcpu-linux-runner&utm_medium=changelog&utm_campaign=universe25#baseline-minute-costs https://github.com/actions/runner-images/blob/main/images/ubuntu-slim/ubuntu-slim-Readme.md Signed-off-by: Aurélien Pupier <[email protected]> --- .github/workflows/check-container-versions.yml | 2 +- .github/workflows/pr-cleanup-branches.yml | 2 +- .github/workflows/pr-commenter.yml | 2 +- .github/workflows/pr-id.yml | 2 +- .github/workflows/pr-labeler.yml | 2 +- .github/workflows/pr-test-commenter.yml | 2 +- dsl/camel-jbang/camel-jbang-it/src/test/resources/logback-test.xml | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/check-container-versions.yml b/.github/workflows/check-container-versions.yml index 4048e13509d1..22866ad2b1e6 100644 --- a/.github/workflows/check-container-versions.yml +++ b/.github/workflows/check-container-versions.yml @@ -35,7 +35,7 @@ on: jobs: upgrade-container-versions: - runs-on: ubuntu-latest + runs-on: ubuntu-slim permissions: contents: write pull-requests: write diff --git a/.github/workflows/pr-cleanup-branches.yml b/.github/workflows/pr-cleanup-branches.yml index 9686bc064e7f..b0e6d8573da3 100644 --- a/.github/workflows/pr-cleanup-branches.yml +++ b/.github/workflows/pr-cleanup-branches.yml @@ -33,7 +33,7 @@ jobs: && github.event.pull_request.head.ref != 'main' && !startsWith(github.event.pull_request.head.ref, 'camel-') && !startsWith(github.event.pull_request.head.ref, 'regen_bot_') - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - name: Delete branch env: diff --git a/.github/workflows/pr-commenter.yml b/.github/workflows/pr-commenter.yml index 4e15ca2329fd..2b99217b30f9 100644 --- a/.github/workflows/pr-commenter.yml +++ b/.github/workflows/pr-commenter.yml @@ -31,7 +31,7 @@ permissions: jobs: process: - runs-on: ubuntu-latest + runs-on: ubuntu-slim if: > github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' diff --git a/.github/workflows/pr-id.yml b/.github/workflows/pr-id.yml index 7495b14634af..b973cac18e02 100644 --- a/.github/workflows/pr-id.yml +++ b/.github/workflows/pr-id.yml @@ -28,7 +28,7 @@ permissions: jobs: upload: - runs-on: ubuntu-latest + runs-on: ubuntu-slim if: > github.repository == 'apache/camel' steps: diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml index 5d5756194d63..67cb0079ca49 100644 --- a/.github/workflows/pr-labeler.yml +++ b/.github/workflows/pr-labeler.yml @@ -31,7 +31,7 @@ permissions: jobs: process: - runs-on: ubuntu-latest + runs-on: ubuntu-slim if: > github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' diff --git a/.github/workflows/pr-test-commenter.yml b/.github/workflows/pr-test-commenter.yml index 20f1e843d463..afacf667be60 100644 --- a/.github/workflows/pr-test-commenter.yml +++ b/.github/workflows/pr-test-commenter.yml @@ -29,7 +29,7 @@ on: jobs: comment: - runs-on: ubuntu-latest + runs-on: ubuntu-slim if: > github.event.workflow_run.event == 'pull_request' || github.event.workflow_run.event == 'workflow_dispatch' diff --git a/dsl/camel-jbang/camel-jbang-it/src/test/resources/logback-test.xml b/dsl/camel-jbang/camel-jbang-it/src/test/resources/logback-test.xml index 8a8981831af3..9a4114b27532 100644 --- a/dsl/camel-jbang/camel-jbang-it/src/test/resources/logback-test.xml +++ b/dsl/camel-jbang/camel-jbang-it/src/test/resources/logback-test.xml @@ -28,7 +28,7 @@ </root> <logger name="org.testcontainers" level="INFO"/> - <logger name="tc" level="INFO"/> + <logger name="tc" level="DEBUG"/> <logger name="com.github.dockerjava" level="WARN"/> <logger name="com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.wire" level="OFF"/> <logger name="org.apache.camel.dsl.jbang" level="DEBUG"/>
