Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit cd41614

Browse filesBrowse files
bnbmarco-ippolito
authored andcommitted
tools: use ubuntu-slim runner in meta GitHub Actions
Signed-off-by: Tierney Cyren <hello@bnb.im> PR-URL: #61663 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
1 parent 5c091d5 commit cd41614
Copy full SHA for cd41614

10 files changed

+13-13Lines changed: 13 additions & 13 deletions
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎.github/workflows/close-stale-feature-requests.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/close-stale-feature-requests.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
issues: write # for actions/stale to close stale issues
4040
pull-requests: write # for actions/stale to close stale PRs
4141
if: github.repository == 'nodejs/node'
42-
runs-on: ubuntu-latest
42+
runs-on: ubuntu-slim
4343
steps:
4444
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
4545
with:
Collapse file

‎.github/workflows/close-stale-pull-requests.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/close-stale-pull-requests.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
permissions:
3434
pull-requests: write # for actions/stale to close stale PRs
3535
if: github.repository == 'nodejs/node'
36-
runs-on: ubuntu-latest
36+
runs-on: ubuntu-slim
3737
steps:
3838
- name: Set default end date which is 1 year ago
3939
run: echo "END_DATE=$(date --date='525600 minutes ago' --rfc-2822)" >> "$GITHUB_ENV"
Collapse file

‎.github/workflows/close-stalled.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/close-stalled.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
issues: write # for actions/stale to close stale issues
1919
pull-requests: write # for actions/stale to close stale PRs
2020
if: github.repository == 'nodejs/node'
21-
runs-on: ubuntu-latest
21+
runs-on: ubuntu-slim
2222
steps:
2323
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
2424
with:
Collapse file

‎.github/workflows/comment-labeled.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/comment-labeled.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
issues: write
2525
pull-requests: write
2626
if: github.repository == 'nodejs/node' && github.event.label.name == 'stalled'
27-
runs-on: ubuntu-latest
27+
runs-on: ubuntu-slim
2828
steps:
2929
- name: Post stalled comment
3030
env:
@@ -36,7 +36,7 @@ jobs:
3636
permissions:
3737
pull-requests: write
3838
if: github.repository == 'nodejs/node' && github.event_name == 'pull_request_target' && github.event.label.name == 'fast-track'
39-
runs-on: ubuntu-latest
39+
runs-on: ubuntu-slim
4040
steps:
4141
- name: Request Fast-Track
4242
env:
@@ -47,7 +47,7 @@ jobs:
4747
permissions:
4848
pull-requests: write
4949
if: github.repository == 'nodejs/node' && github.event_name == 'pull_request_target' && github.event.label.name == 'notable-change'
50-
runs-on: ubuntu-latest
50+
runs-on: ubuntu-slim
5151
steps:
5252
- name: Add notable change description
5353
env:
Collapse file

‎.github/workflows/commit-lint.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/commit-lint.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010

1111
jobs:
1212
lint-commit-message:
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-slim
1414
steps:
1515
- name: Compute number of commits in the PR
1616
id: nb-of-commits
Collapse file

‎.github/workflows/commit-queue.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/commit-queue.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
permissions:
2727
pull-requests: read
2828
if: github.repository == 'nodejs/node'
29-
runs-on: ubuntu-latest
29+
runs-on: ubuntu-slim
3030
outputs:
3131
numbers: ${{ steps.get_mergeable_prs.outputs.numbers }}
3232
steps:
@@ -57,7 +57,7 @@ jobs:
5757
commitQueue:
5858
needs: get_mergeable_prs
5959
if: needs.get_mergeable_prs.outputs.numbers != ''
60-
runs-on: ubuntu-latest
60+
runs-on: ubuntu-slim
6161
steps:
6262
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
6363
with:
Collapse file

‎.github/workflows/find-inactive-collaborators.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/find-inactive-collaborators.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616
jobs:
1717
find:
1818
if: github.repository == 'nodejs/node'
19-
runs-on: ubuntu-latest
19+
runs-on: ubuntu-slim
2020

2121
steps:
2222
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
Collapse file

‎.github/workflows/find-inactive-tsc.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/find-inactive-tsc.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616
jobs:
1717
find:
1818
if: github.repository == 'nodejs/node'
19-
runs-on: ubuntu-latest
19+
runs-on: ubuntu-slim
2020

2121
steps:
2222
- name: Checkout the repo
Collapse file

‎.github/workflows/label-flaky-test-issue.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/label-flaky-test-issue.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010
jobs:
1111
label:
1212
if: github.event.label.name == 'flaky-test'
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-slim
1414
permissions:
1515
issues: write
1616
steps:
Collapse file

‎.github/workflows/label-pr.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/label-pr.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99

1010
jobs:
1111
label:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-slim
1313

1414
steps:
1515
- uses: nodejs/node-pr-labeler@d4cf1b8b9f23189c37917000e5e17e796c770a6b # v1

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.