Skip to content

Commit 0e1a42d

Browse files
authored
Merge branch 'main' into Bug-1993037-splitViewId-in-tabs-API
2 parents 34d6341 + 60df76d commit 0e1a42d

File tree

314 files changed

+7304
-1470
lines changed

Some content is hidden

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

314 files changed

+7304
-1470
lines changed

.github/workflows/auto-cleanup-bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
persist-credentials: false
2121

2222
- name: Setup Node.js environment
23-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
23+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
2424
with:
2525
node-version-file: ".nvmrc"
2626
package-manager-cache: false

.github/workflows/interfacedata-updater.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
persist-credentials: false
2424

2525
- name: Setup node.js
26-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
26+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
2727
with:
2828
node-version-file: "mdn-content/.nvmrc"
2929
package-manager-cache: false

.github/workflows/markdown-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
persist-credentials: false
2525

2626
- name: Setup Node.js environment
27-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
27+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
2828
with:
2929
node-version-file: ".nvmrc"
3030
cache: npm

.github/workflows/pr-check-lint_content.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ jobs:
3737
- name: Checkout BASE
3838
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3939
with:
40+
# explicitly specify base ref to ensure `pull_request` runs
41+
# behave the same as `pull_request_target` runs
42+
ref: ${{ github.event.pull_request.base.sha }}
4043
persist-credentials: false
4144

4245
- name: Get changed files
@@ -81,15 +84,15 @@ jobs:
8184
git config --global user.email "108879845+mdn-bot@users.noreply.github.com"
8285
git config --global user.name "mdn-bot"
8386
84-
# Remove non-Markdown files from HEAD.
87+
# Remove non-Markdown files from BASE.
8588
find files -type f ! -name '*.md' -delete
86-
git commit --quiet -m "Remove non-Markdown files from PR head" files
89+
git commit --quiet -m "Remove non-Markdown files from PR base" files
8790
8891
# Remove files from BASE.
8992
rm -r files *.md
9093
9194
# Remove non-Markdown files from HEAD.
92-
find pr_head/files -type f ! -name '*.md' -delete
95+
find pr_head -type f ! -name '*.md' -delete
9396
9497
# Move Markdown files from HEAD into BASE.
9598
mv pr_head/files pr_head/*.md .
@@ -100,11 +103,12 @@ jobs:
100103
# To avoid contents of PR getting into the diff that we are going to generate
101104
# after running the linters, here we make a dummy commit.
102105
# Note, this commit is not getting pushed.
106+
git add .
103107
git commit -m "Use Markdown files from PR head" .
104108
105109
- name: Setup Node.js environment
106110
if: steps.check.outputs.HAS_FILES == 'true'
107-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
111+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
108112
with:
109113
node-version-file: ".nvmrc"
110114
cache: npm

.github/workflows/pr-check_cspell_lists.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
persist-credentials: false
2525

2626
- name: Setup Node.js environment
27-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
27+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
2828
with:
2929
node-version-file: ".nvmrc"
3030

.github/workflows/pr-check_javascript.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
persist-credentials: false
2222

2323
- name: Setup Node.js environment
24-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
24+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
2525
with:
2626
node-version-file: ".nvmrc"
2727
cache: npm

.github/workflows/pr-check_json.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
persist-credentials: false
2222

2323
- name: Setup Node.js environment
24-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
24+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
2525
with:
2626
node-version-file: ".nvmrc"
2727
cache: npm

.github/workflows/pr-check_redirects.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
persist-credentials: false
1717

1818
- name: Setup Node.js environment
19-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
19+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
2020
with:
2121
node-version-file: ".nvmrc"
2222
cache: npm

.github/workflows/pr-check_scripts.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
persist-credentials: false
2222

2323
- name: Setup Node.js environment
24-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
24+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
2525
with:
2626
node-version-file: ".nvmrc"
2727
cache: npm
@@ -42,7 +42,7 @@ jobs:
4242
persist-credentials: false
4343

4444
- name: Setup Node.js environment
45-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
45+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
4646
with:
4747
node-version-file: ".nvmrc"
4848
cache: npm
@@ -85,7 +85,7 @@ jobs:
8585
persist-credentials: false
8686

8787
- name: Setup Node.js environment
88-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
88+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
8989
with:
9090
node-version-file: ".nvmrc"
9191
cache: npm
@@ -106,7 +106,7 @@ jobs:
106106
persist-credentials: false
107107

108108
- name: Setup Node.js environment
109-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
109+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
110110
with:
111111
node-version-file: ".nvmrc"
112112
cache: npm
@@ -131,7 +131,7 @@ jobs:
131131
persist-credentials: false
132132

133133
- name: Setup Node.js environment
134-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
134+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
135135
with:
136136
node-version-file: ".nvmrc"
137137
cache: npm

.github/workflows/pr-check_url-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
persist-credentials: false
2121

2222
- name: Setup Node.js environment
23-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
23+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
2424
with:
2525
node-version-file: ".nvmrc"
2626
cache: npm

0 commit comments

Comments
 (0)