Skip to content

Commit 1e854d2

Browse files
authored
Merge branch 'nodejs:main' into diag/suppression-als
2 parents 5bc0fb8 + be7ea27 commit 1e854d2

44 files changed

Lines changed: 602 additions & 256 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build-tarball.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
if: github.event.pull_request.draft == false
7575
runs-on: ubuntu-slim
7676
steps:
77-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
77+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
7878
with:
7979
persist-credentials: false
8080
- name: Set up Python ${{ env.PYTHON_VERSION }}
@@ -105,7 +105,7 @@ jobs:
105105
SCCACHE_GHA_ENABLED: ${{ github.base_ref == 'main' || github.ref_name == 'main' }}
106106
SCCACHE_IDLE_TIMEOUT: '0'
107107
steps:
108-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
108+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
109109
with:
110110
persist-credentials: false
111111
sparse-checkout: .github/actions/install-clang

.github/workflows/close-stalled.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
if: github.repository == 'nodejs/node'
2121
runs-on: ubuntu-slim
2222
steps:
23-
- uses: actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f # v10.2.0
23+
- uses: actions/stale@eb5cf3af3ac0a1aa4c9c45633dd1ae542a27a899 # v10.3.0
2424
with:
2525
repo-token: ${{ secrets.GITHUB_TOKEN }}
2626
days-before-close: 30

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@ jobs:
2424

2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
27+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
2828

2929
# Initializes the CodeQL tools for scanning.
3030
- name: Initialize CodeQL
31-
uses: github/codeql-action/init@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
31+
uses: github/codeql-action/init@87557b9c84dde89fdd9b10e88954ac2f4248e463 # v4.36.1
3232
with:
3333
languages: ${{ matrix.language }}
3434
config-file: ./.github/codeql-config.yml
3535

3636
- name: Autobuild
37-
uses: github/codeql-action/autobuild@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
37+
uses: github/codeql-action/autobuild@87557b9c84dde89fdd9b10e88954ac2f4248e463 # v4.36.1
3838

3939
- name: Perform CodeQL Analysis
40-
uses: github/codeql-action/analyze@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
40+
uses: github/codeql-action/analyze@87557b9c84dde89fdd9b10e88954ac2f4248e463 # v4.36.1
4141
with:
4242
category: /language:${{matrix.language}}

.github/workflows/commit-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
run: |
2121
echo "plusOne=$((${{ github.event.pull_request.commits }} + 1))" >> $GITHUB_OUTPUT
2222
echo "minusOne=$((${{ github.event.pull_request.commits }} - 1))" >> $GITHUB_OUTPUT
23-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
23+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
2424
with:
2525
fetch-depth: ${{ steps.nb-of-commits.outputs.plusOne }}
2626
persist-credentials: false

.github/workflows/commit-queue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
if: needs.get_mergeable_prs.outputs.numbers != ''
6060
runs-on: ubuntu-slim
6161
steps:
62-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
62+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
6363
with:
6464
# A personal token is required because pushing with GITHUB_TOKEN will
6565
# prevent commits from running CI after they land. It needs

.github/workflows/coverage-linux-without-intl.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
if: github.event.pull_request.draft == false
5151
runs-on: ubuntu-24.04
5252
steps:
53-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
53+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
5454
with:
5555
persist-credentials: false
5656
- name: Install Clang ${{ env.CLANG_VERSION }}
@@ -87,6 +87,6 @@ jobs:
8787
- name: Clean tmp
8888
run: rm -rf coverage/tmp && rm -rf out
8989
- name: Upload
90-
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0
90+
uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6.0.1
9191
with:
9292
directory: ./coverage

.github/workflows/coverage-linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
if: github.event.pull_request.draft == false
5151
runs-on: ubuntu-24.04-arm
5252
steps:
53-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
53+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
5454
with:
5555
persist-credentials: false
5656
- name: Install Clang ${{ env.CLANG_VERSION }}
@@ -87,6 +87,6 @@ jobs:
8787
- name: Clean tmp
8888
run: rm -rf coverage/tmp && rm -rf out
8989
- name: Upload
90-
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0
90+
uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6.0.1
9191
with:
9292
directory: ./coverage

.github/workflows/coverage-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
if: github.event.pull_request.draft == false
7070
runs-on: windows-2025
7171
steps:
72-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
72+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
7373
with:
7474
persist-credentials: false
7575
- name: Set up Python ${{ env.PYTHON_VERSION }}
@@ -100,6 +100,6 @@ jobs:
100100
- name: Clean tmp
101101
run: npx rimraf ./coverage/tmp
102102
- name: Upload
103-
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0
103+
uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6.0.1
104104
with:
105105
directory: ./coverage

.github/workflows/create-release-proposal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
RELEASE_LINE: ${{ inputs.release-line }}
3434
runs-on: ubuntu-slim
3535
steps:
36-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
36+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
3737
with:
3838
ref: ${{ env.STAGING_BRANCH }}
3939
persist-credentials: false

.github/workflows/daily-wpt-fyi.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
SHORT_SHA=$(node -p 'process.version.split(/-nightly\d{8}/)[1]')
6565
echo "NIGHTLY_REF=$(gh api /repos/nodejs/node/commits/$SHORT_SHA --jq '.sha')" >> $GITHUB_ENV
6666
- name: Checkout ${{ steps.setup-node.outputs.node-version }}
67-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
67+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
6868
with:
6969
persist-credentials: false
7070
ref: ${{ env.NIGHTLY_REF || steps.setup-node.outputs.node-version }}
@@ -80,7 +80,7 @@ jobs:
8080
run: rm -rf wpt
8181
working-directory: test/fixtures
8282
- name: Checkout epochs/daily WPT
83-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
83+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
8484
with:
8585
repository: web-platform-tests/wpt
8686
persist-credentials: false
@@ -111,7 +111,7 @@ jobs:
111111
# version-specific checkout above overwrites .github/actions/
112112
- name: Checkout undici WPT actions
113113
if: ${{ env.WPT_REPORT != '' }}
114-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
114+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
115115
with:
116116
sparse-checkout: |
117117
.github/actions/undici-wpt-current

0 commit comments

Comments
 (0)