Skip to content

Commit 30322b4

Browse files
authored
Merge branch 'nodejs:main' into fix-sidebar-scroll-last-item
2 parents 5502c79 + 7228f53 commit 30322b4

36 files changed

+587
-93
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
shell: cmd
5454
run: echo C:\Program Files\Git\usr\bin>>"%GITHUB_PATH%"
5555

56-
- uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
56+
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
5757
with:
5858
path: ${{ github.workspace }}/apps/site/.next/cache
5959
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }}

.github/workflows/bundle-compare.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919

2020
steps:
2121
- name: Harden Runner
22-
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
22+
uses: step-security/harden-runner@e3f713f2d8f53843e71c69a996d56f51aa9adfb9 # v2.14.1
2323
with:
2424
egress-policy: audit
2525

2626
- name: Git Checkout
27-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
27+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2828

2929
- name: Download Stats (HEAD)
3030
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0

.github/workflows/chromatic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
- name: Start Visual Regression Tests (Chromatic)
6363
# This assigns the Environment Deployment for Storybook
6464
id: chromatic-deploy
65-
uses: chromaui/action@4c20b95e9d3209ecfdf9cd6aace6bbde71ba1694 # v13.3.4
65+
uses: chromaui/action@07791f8243f4cb2698bf4d00426baf4b2d1cb7e0 # v13.3.5
6666
with:
6767
workingDir: packages/ui-components
6868
buildScriptName: storybook:build

.github/workflows/codeql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
pull_request:
77
# The branches below must be a subset of the branches above
88
branches: ['main']
9+
types: [opened, synchronize, reopened, ready_for_review]
910
schedule:
1011
- cron: '0 0 * * 1'
1112

.github/workflows/lighthouse.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
steps:
4141
- name: Capture Vercel Preview
4242
id: check_deployment
43-
uses: patrickedqvist/wait-for-vercel-preview@06c79330064b0e6ef7a2574603b62d3c98789125 # v1.3.2
43+
uses: patrickedqvist/wait-for-vercel-preview@d7982701e6fcd3ae073bff929e408e004404d38d # v1.3.3
4444
with:
4545
token: ${{ secrets.GITHUB_TOKEN }}
4646
max_timeout: 300 # timeout after 5 minutes
@@ -65,12 +65,12 @@ jobs:
6565

6666
steps:
6767
- name: Harden Runner
68-
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
68+
uses: step-security/harden-runner@e3f713f2d8f53843e71c69a996d56f51aa9adfb9 # v2.14.1
6969
with:
7070
egress-policy: audit
7171

7272
- name: Git Checkout
73-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
73+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
7474
with:
7575
# Provides the Pull Request commit SHA or the GitHub merge group ref
7676
ref: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.head.sha || github.ref }}

.github/workflows/lint-and-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
use-version-file: true
5050

5151
- name: Restore Lint Cache
52-
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
52+
uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
5353
with:
5454
path: |
5555
.turbo/cache
@@ -86,7 +86,7 @@ jobs:
8686
(github.event_name == 'pull_request' &&
8787
startsWith(github.event.pull_request.head.ref, 'dependabot/') == false &&
8888
github.event.pull_request.head.ref != 'chore/crowdin')
89-
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
89+
uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
9090
with:
9191
path: |
9292
.turbo/cache

.github/workflows/playwright-cloudflare-open-next.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
- name: Cache Playwright browsers
4343
id: playwright-cache
44-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
44+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
4545
with:
4646
path: ~/.cache/ms-playwright
4747
key: playwright-${{ runner.os }}-${{ steps.playwright-version.outputs.version }}

.github/workflows/playwright.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
steps:
3131
- name: Capture Vercel Preview
3232
id: check_deployment
33-
uses: patrickedqvist/wait-for-vercel-preview@06c79330064b0e6ef7a2574603b62d3c98789125 # v1.3.2
33+
uses: patrickedqvist/wait-for-vercel-preview@d7982701e6fcd3ae073bff929e408e004404d38d # v1.3.3
3434
with:
3535
token: ${{ secrets.GITHUB_TOKEN }}
3636
max_timeout: 300 # timeout after 5 minutes
@@ -67,7 +67,7 @@ jobs:
6767

6868
- name: Cache Playwright browsers
6969
id: playwright-cache
70-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
70+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
7171
with:
7272
path: ~/.cache/ms-playwright
7373
key: playwright-${{ runner.os }}-${{ steps.playwright-version.outputs.version }}

.github/workflows/pnpm-updater.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ jobs:
2121

2222
steps:
2323
- name: Harden Runner
24-
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
24+
uses: step-security/harden-runner@e3f713f2d8f53843e71c69a996d56f51aa9adfb9 # v2.14.1
2525
with:
2626
egress-policy: audit
2727

2828
- name: Git Checkout
29-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
29+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3030

3131
- name: Setup pnpm
32-
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
32+
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
3333

3434
- name: Update pnpm and package.json
3535
id: update-pnpm

.github/workflows/publish-packages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
matrix: ${{ steps.generate-matrix.outputs.matrix }}
3232
steps:
3333
- name: Harden Runner
34-
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
34+
uses: step-security/harden-runner@e3f713f2d8f53843e71c69a996d56f51aa9adfb9 # v2.14.1
3535
with:
3636
egress-policy: audit
3737

@@ -60,7 +60,7 @@ jobs:
6060
echo "✅ Commit is verified and trusted."
6161
6262
- name: Checkout repository
63-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
63+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
6464
with:
6565
fetch-depth: 2 # Need at least 2 commits to detect changes between commits
6666

0 commit comments

Comments
 (0)