From b204054d47b1e996be7b7b92a89166380e79a41e Mon Sep 17 00:00:00 2001 From: Tierney Cyren Date: Tue, 3 Feb 2026 16:13:19 -0500 Subject: [PATCH] tools: use ubuntu-slim runner in meta GitHub Actions Signed-off-by: Tierney Cyren --- .github/workflows/close-stale-feature-requests.yml | 2 +- .github/workflows/close-stale-pull-requests.yml | 2 +- .github/workflows/close-stalled.yml | 2 +- .github/workflows/comment-labeled.yml | 6 +++--- .github/workflows/commit-lint.yml | 2 +- .github/workflows/commit-queue.yml | 4 ++-- .github/workflows/find-inactive-collaborators.yml | 2 +- .github/workflows/find-inactive-tsc.yml | 2 +- .github/workflows/label-flaky-test-issue.yml | 2 +- .github/workflows/label-pr.yml | 2 +- .github/workflows/notify-on-push.yml | 4 ++-- 11 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/close-stale-feature-requests.yml b/.github/workflows/close-stale-feature-requests.yml index f8f086af04dae0..f3002517105301 100644 --- a/.github/workflows/close-stale-feature-requests.yml +++ b/.github/workflows/close-stale-feature-requests.yml @@ -37,7 +37,7 @@ jobs: issues: write # for actions/stale to close stale issues pull-requests: write # for actions/stale to close stale PRs if: github.repository == 'nodejs/node' - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0 with: diff --git a/.github/workflows/close-stale-pull-requests.yml b/.github/workflows/close-stale-pull-requests.yml index b18cd5c37e69c4..de565c9051328d 100644 --- a/.github/workflows/close-stale-pull-requests.yml +++ b/.github/workflows/close-stale-pull-requests.yml @@ -33,7 +33,7 @@ jobs: permissions: pull-requests: write # for actions/stale to close stale PRs if: github.repository == 'nodejs/node' - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - name: Set default end date which is 1 year ago run: echo "END_DATE=$(date --date='525600 minutes ago' --rfc-2822)" >> "$GITHUB_ENV" diff --git a/.github/workflows/close-stalled.yml b/.github/workflows/close-stalled.yml index 7ece19e2e2d6b2..89cc9cffb8c64a 100644 --- a/.github/workflows/close-stalled.yml +++ b/.github/workflows/close-stalled.yml @@ -18,7 +18,7 @@ jobs: issues: write # for actions/stale to close stale issues pull-requests: write # for actions/stale to close stale PRs if: github.repository == 'nodejs/node' - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0 with: diff --git a/.github/workflows/comment-labeled.yml b/.github/workflows/comment-labeled.yml index 7e3a19c6afd13c..e6652507484154 100644 --- a/.github/workflows/comment-labeled.yml +++ b/.github/workflows/comment-labeled.yml @@ -24,7 +24,7 @@ jobs: issues: write pull-requests: write if: github.repository == 'nodejs/node' && github.event.label.name == 'stalled' - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - name: Post stalled comment env: @@ -36,7 +36,7 @@ jobs: permissions: pull-requests: write if: github.repository == 'nodejs/node' && github.event_name == 'pull_request_target' && github.event.label.name == 'fast-track' - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - name: Request Fast-Track env: @@ -47,7 +47,7 @@ jobs: permissions: pull-requests: write if: github.repository == 'nodejs/node' && github.event_name == 'pull_request_target' && github.event.label.name == 'notable-change' - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - name: Add notable change description env: diff --git a/.github/workflows/commit-lint.yml b/.github/workflows/commit-lint.yml index 6edd0980695e97..de508e971d5ea8 100644 --- a/.github/workflows/commit-lint.yml +++ b/.github/workflows/commit-lint.yml @@ -10,7 +10,7 @@ permissions: jobs: lint-commit-message: - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - name: Compute number of commits in the PR id: nb-of-commits diff --git a/.github/workflows/commit-queue.yml b/.github/workflows/commit-queue.yml index 7657a7790a94e1..bfc7e96c04233b 100644 --- a/.github/workflows/commit-queue.yml +++ b/.github/workflows/commit-queue.yml @@ -26,7 +26,7 @@ jobs: permissions: pull-requests: read if: github.repository == 'nodejs/node' - runs-on: ubuntu-latest + runs-on: ubuntu-slim outputs: numbers: ${{ steps.get_mergeable_prs.outputs.numbers }} steps: @@ -56,7 +56,7 @@ jobs: commitQueue: needs: get_mergeable_prs if: needs.get_mergeable_prs.outputs.numbers != '' - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: diff --git a/.github/workflows/find-inactive-collaborators.yml b/.github/workflows/find-inactive-collaborators.yml index 4b60ad4b40f9ee..91fc41f189461d 100644 --- a/.github/workflows/find-inactive-collaborators.yml +++ b/.github/workflows/find-inactive-collaborators.yml @@ -16,7 +16,7 @@ permissions: jobs: find: if: github.repository == 'nodejs/node' - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 diff --git a/.github/workflows/find-inactive-tsc.yml b/.github/workflows/find-inactive-tsc.yml index b8ef8ef1f92d8a..d4d746a3633bfb 100644 --- a/.github/workflows/find-inactive-tsc.yml +++ b/.github/workflows/find-inactive-tsc.yml @@ -16,7 +16,7 @@ permissions: jobs: find: if: github.repository == 'nodejs/node' - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - name: Checkout the repo diff --git a/.github/workflows/label-flaky-test-issue.yml b/.github/workflows/label-flaky-test-issue.yml index 82e2a10ab2b25c..66f0b6e979fa6d 100644 --- a/.github/workflows/label-flaky-test-issue.yml +++ b/.github/workflows/label-flaky-test-issue.yml @@ -10,7 +10,7 @@ permissions: jobs: label: if: github.event.label.name == 'flaky-test' - runs-on: ubuntu-latest + runs-on: ubuntu-slim permissions: issues: write steps: diff --git a/.github/workflows/label-pr.yml b/.github/workflows/label-pr.yml index 95fdd42a4c700a..03aa1fa9a8d0e6 100644 --- a/.github/workflows/label-pr.yml +++ b/.github/workflows/label-pr.yml @@ -9,7 +9,7 @@ permissions: jobs: label: - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - uses: nodejs/node-pr-labeler@d4cf1b8b9f23189c37917000e5e17e796c770a6b # v1 diff --git a/.github/workflows/notify-on-push.yml b/.github/workflows/notify-on-push.yml index 364e6610d439aa..856be0be47e56d 100644 --- a/.github/workflows/notify-on-push.yml +++ b/.github/workflows/notify-on-push.yml @@ -11,7 +11,7 @@ jobs: notifyOnForcePush: name: Notify on Force Push on `main` if: github.repository == 'nodejs/node' && github.event.forced - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - name: Slack Notification uses: rtCamp/action-slack-notify@b24d75fe0e728a4bf9fc42ee217caa686d141ee8 # 2.2.1 @@ -30,7 +30,7 @@ jobs: notifyOnMissingMetadata: name: Notify on Push on `main` that lacks metadata if: github.repository == 'nodejs/node' - runs-on: ubuntu-latest + runs-on: ubuntu-slim permissions: pull-requests: write steps: