Skip to content

Commit 452e01d

Browse files
fix(deps): update all dependencies
1 parent a789c88 commit 452e01d

File tree

13 files changed

+17223
-17361
lines changed

13 files changed

+17223
-17361
lines changed

.github/actions/pnpm-install/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ runs:
55
- name: Configure Git
66
uses: ./.github/actions/git-config
77
- name: "Install pnpm"
8-
uses: pnpm/action-setup@v4
8+
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4
99
with:
1010
run_install: false
1111
- name: Install Node.js
12-
uses: actions/setup-node@v4
12+
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
1313
with:
1414
cache: pnpm
1515
node-version-file: .nvmrc

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
name: 🔬 Lint Prettier
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1010
- uses: ./.github/actions/pnpm-install
1111
- run: pnpm turbo lint:prettier
1212
timeout-minutes: 15
@@ -18,7 +18,7 @@ jobs:
1818
name: 🔬 Lint ESLint
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2222
- uses: ./.github/actions/pnpm-install
2323
- run: pnpm turbo lint:eslint
2424
timeout-minutes: 15
@@ -30,7 +30,7 @@ jobs:
3030
name: 🔬 Lint CSS
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
3434
- uses: ./.github/actions/pnpm-install
3535
- run: pnpm lint:css
3636
timeout-minutes: 15
@@ -42,7 +42,7 @@ jobs:
4242
name: 🔬 Lint Types
4343
runs-on: ubuntu-latest
4444
steps:
45-
- uses: actions/checkout@v4
45+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
4646
- uses: ./.github/actions/pnpm-install
4747
- run: pnpm lint:types
4848
timeout-minutes: 15
@@ -54,7 +54,7 @@ jobs:
5454
name: 🔬 Lint MD
5555
runs-on: ubuntu-latest
5656
steps:
57-
- uses: actions/checkout@v4
57+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
5858
- uses: ./.github/actions/pnpm-install
5959
- run: pnpm lint:md
6060
timeout-minutes: 15
@@ -66,7 +66,7 @@ jobs:
6666
name: 🔬 Lint Package JSON
6767
runs-on: ubuntu-latest
6868
steps:
69-
- uses: actions/checkout@v4
69+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
7070
- uses: ./.github/actions/pnpm-install
7171
- run: pnpm lint:package-json
7272
timeout-minutes: 15
@@ -78,7 +78,7 @@ jobs:
7878
name: 🔬 Lint Spelling
7979
runs-on: ubuntu-latest
8080
steps:
81-
- uses: actions/checkout@v4
81+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
8282
- uses: ./.github/actions/pnpm-install
8383
- run: pnpm lint:spelling
8484

.github/workflows/clean-up-pr-caches.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
runs-on: ubuntu-latest
55
steps:
66
- name: Check out code
7-
uses: actions/checkout@v4
7+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
88
- env:
99
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1010
name: 🧹 Cleanup

.github/workflows/release-or-version-pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout Repo
10-
uses: actions/checkout@v4
10+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1111
with:
1212
# To run comparison we need more than the latest commit.
1313
# @link https://github.com/actions/checkout#fetch-all-history-for-all-tags-and-branches
1414
fetch-depth: 0
1515
- name: Configure Git
1616
uses: ./.github/actions/git-config
1717
- name: ♻️ Use Node.js 18.x
18-
uses: actions/setup-node@v4
18+
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
1919
with:
20-
node-version: 18.x
20+
node-version: 24.x
2121
- name: 📥 Monorepo install
2222
uses: ./.github/actions/pnpm-install
2323
# @link https://github.com/changesets/action

.github/workflows/semantic-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
steps:
66
- env:
77
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8-
uses: amannn/action-semantic-pull-request@v5.5.3
8+
uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1
99
name: Semantic PR
1010
on:
1111
pull_request_target:

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ jobs:
22
stale:
33
runs-on: ubuntu-latest
44
steps:
5-
- uses: actions/stale@v9
5+
- uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 # v10
66
with:
77
any-of-labels: "Status: Awaiting Response,Resolution: Not Reproducible"
88
close-issue-message: This issue was closed because it has been stalled for 7 days with no activity.

.github/workflows/sync-labels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ jobs:
22
sync-label:
33
runs-on: ubuntu-latest
44
steps:
5-
- uses: actions/checkout@v4
5+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
66
- env:
77
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8-
uses: micnncim/action-label-syncer@v1
8+
uses: micnncim/action-label-syncer@3abd5ab72fda571e69fffd97bd4e0033dd5f495c # v1
99
with:
1010
manifest: .github/labels.yml
1111
name: Sync labels

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20
1+
24

apps/registry/package.json

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -50,49 +50,49 @@
5050
]
5151
},
5252
"dependencies": {
53-
"@mdx-js/loader": "3.1.0",
54-
"@mdx-js/react": "3.1.0",
55-
"@next/mdx": "15.1.7",
56-
"@radix-ui/react-avatar": "1.1.3",
57-
"@radix-ui/react-dropdown-menu": "2.1.6",
58-
"@radix-ui/react-label": "2.1.2",
59-
"@radix-ui/react-slot": "1.1.2",
60-
"@radix-ui/react-tabs": "1.1.3",
53+
"@mdx-js/loader": "3.1.1",
54+
"@mdx-js/react": "3.1.1",
55+
"@next/mdx": "16.0.1",
56+
"@radix-ui/react-avatar": "1.1.10",
57+
"@radix-ui/react-dropdown-menu": "2.1.16",
58+
"@radix-ui/react-label": "2.1.7",
59+
"@radix-ui/react-slot": "1.2.3",
60+
"@radix-ui/react-tabs": "1.1.13",
6161
"@types/mdx": "2.0.13",
6262
"@types/prismjs": "1.26.5",
6363
"class-variance-authority": "0.7.1",
6464
"clsx": "2.1.1",
6565
"hast-util-to-html": "9.0.5",
66-
"lucide-react": "0.475.0",
66+
"lucide-react": "0.552.0",
6767
"next": "15.1.7",
68-
"next-themes": "0.4.4",
68+
"next-themes": "0.4.6",
6969
"prismjs": "1.30.0",
70-
"react": "19.0.0",
71-
"react-dom": "19.0.0",
72-
"shadcn": "2.3.0",
73-
"tailwind-merge": "2.6.0",
70+
"react": "19.2.0",
71+
"react-dom": "19.2.0",
72+
"shadcn": "3.5.0",
73+
"tailwind-merge": "3.3.1",
7474
"tailwindcss-animate": "1.0.7",
75-
"zod": "3.24.1"
75+
"zod": "4.1.12"
7676
},
7777
"devDependencies": {
78-
"@next/env": "15.1.7",
79-
"@next/eslint-plugin-next": "15.1.7",
80-
"@tailwindcss/typography": "0.5.16",
81-
"@types/node": "22.13.4",
82-
"@types/react": "19.0.10",
83-
"@types/react-dom": "19.0.4",
84-
"autoprefixer": "10.4.20",
85-
"eslint": "9.20.1",
86-
"eslint-config-canonical": "44.3.43",
78+
"@next/env": "16.0.1",
79+
"@next/eslint-plugin-next": "16.0.1",
80+
"@tailwindcss/typography": "0.5.19",
81+
"@types/node": "24.10.0",
82+
"@types/react": "19.2.2",
83+
"@types/react-dom": "19.2.2",
84+
"autoprefixer": "10.4.21",
85+
"eslint": "9.39.1",
86+
"eslint-config-canonical": "45.0.1",
8787
"eslint-config-flat-gitignore": "2.1.0",
88-
"eslint-config-prettier": "10.0.1",
89-
"eslint-plugin-jsonc": "2.19.1",
90-
"eslint-plugin-tailwindcss": "3.18.0",
91-
"eslint-plugin-yml": "1.17.0",
92-
"lint-staged": "15.4.3",
93-
"postcss": "8.5.3",
94-
"rimraf": "6.0.1",
95-
"tailwindcss": "3.4.17",
96-
"typescript": "5.7.3"
88+
"eslint-config-prettier": "10.1.8",
89+
"eslint-plugin-jsonc": "2.21.0",
90+
"eslint-plugin-tailwindcss": "3.18.2",
91+
"eslint-plugin-yml": "1.19.0",
92+
"lint-staged": "16.2.6",
93+
"postcss": "8.5.6",
94+
"rimraf": "6.1.0",
95+
"tailwindcss": "4.1.16",
96+
"typescript": "5.9.3"
9797
}
9898
}

0 commit comments

Comments
 (0)