Skip to content

Commit 29842f0

Browse files
chore(deps): update weekly dependencies
1 parent 1dcbf88 commit 29842f0

File tree

16 files changed

+2304
-449
lines changed

16 files changed

+2304
-449
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,16 @@ jobs:
3434
main:
3535
runs-on: ubuntu-latest
3636
steps:
37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v5
3838
with:
3939
fetch-depth: 0
4040

4141
- name: Install pnpm package manager
4242
uses: pnpm/action-setup@v4
4343

44-
- uses: actions/setup-node@v4
44+
- uses: actions/setup-node@v5
4545
with:
46-
node-version: 20
46+
node-version: 22
4747
cache: 'pnpm'
4848

4949
- name: Install dependencies

.github/workflows/e2e-matrix.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ jobs:
5858

5959
name: Cache install (${{ matrix.os }}, node v${{ matrix.node }})
6060
steps:
61-
- uses: actions/checkout@v4
61+
- uses: actions/checkout@v5
6262
with:
6363
fetch-depth: 0
6464

6565
- name: Install pnpm package manager
6666
uses: pnpm/action-setup@v4
6767

68-
- uses: actions/setup-node@v4
68+
- uses: actions/setup-node@v5
6969
with:
7070
node-version: ${{ matrix.node }}
7171
cache: pnpm
@@ -120,7 +120,7 @@ jobs:
120120

121121
name: E2E ${{ matrix.os }}/${{ matrix.pm }}/${{ matrix.node }} ${{ join(matrix.project) }}
122122
steps:
123-
- uses: actions/checkout@v4
123+
- uses: actions/checkout@v5
124124
if: needs.init.outputs.e2e-enabled == 'true'
125125
with:
126126
fetch-depth: 0
@@ -129,7 +129,7 @@ jobs:
129129
if: needs.init.outputs.e2e-enabled == 'true'
130130
uses: pnpm/action-setup@v4
131131

132-
- uses: actions/setup-node@v4
132+
- uses: actions/setup-node@v5
133133
if: needs.init.outputs.e2e-enabled == 'true'
134134
with:
135135
node-version: ${{ matrix.node }}
@@ -188,7 +188,7 @@ jobs:
188188
if: always()
189189
steps:
190190
- name: Download all workflow run artifacts
191-
uses: actions/download-artifact@v4
191+
uses: actions/download-artifact@v5
192192
with:
193193
path: artifacts
194194
pattern: results-*

.github/workflows/fly-deployment.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ jobs:
3939
environment: ${{ steps.environment.outputs.environment }}
4040

4141
steps:
42-
- uses: actions/checkout@v4
42+
- uses: actions/checkout@v5
4343

4444
- uses: pnpm/action-setup@v4
4545

46-
- uses: actions/setup-node@v4
46+
- uses: actions/setup-node@v5
4747
with:
4848
cache: 'pnpm'
4949

@@ -65,19 +65,19 @@ jobs:
6565
environment: ${{ needs.deploy-env.outputs.environment }}
6666

6767
steps:
68-
- uses: actions/create-github-app-token@v1
68+
- uses: actions/create-github-app-token@v2
6969
id: generate-token
7070
with:
7171
app-id: ${{ secrets.CDWR_ACTIONS_BOT_ID }}
7272
private-key: ${{ secrets.CDWR_ACTIONS_BOT_PRIVATE_KEY }}
7373

74-
- uses: actions/checkout@v4
74+
- uses: actions/checkout@v5
7575
with:
7676
fetch-depth: 0
7777

7878
- uses: pnpm/action-setup@v4
7979

80-
- uses: actions/setup-node@v4
80+
- uses: actions/setup-node@v5
8181
with:
8282
cache: 'pnpm'
8383

.github/workflows/nx-migrate.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ jobs:
1818
runs-on: ubuntu-latest
1919

2020
steps:
21-
- uses: actions/create-github-app-token@v1
21+
- uses: actions/create-github-app-token@v2
2222
id: generate-token
2323
with:
2424
app-id: ${{ secrets.CDWR_ACTIONS_BOT_ID }}
2525
private-key: ${{ secrets.CDWR_ACTIONS_BOT_PRIVATE_KEY }}
2626

27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v5
2828

2929
- uses: pnpm/action-setup@v4
3030

31-
- uses: actions/setup-node@v4
31+
- uses: actions/setup-node@v5
3232
with:
33-
node-version: 20
33+
node-version: 22
3434
cache: 'pnpm'
3535

3636
- name: Install dependencies

.github/workflows/publish-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121
id-token: write
2222

2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525

2626
- uses: pnpm/action-setup@v4
2727

28-
- uses: actions/setup-node@v4
28+
- uses: actions/setup-node@v5
2929
with:
30-
node-version: 20
30+
node-version: 22
3131
cache: 'pnpm'
3232
registry-url: https://registry.npmjs.org/
3333

apps/cms/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:20-alpine AS base
1+
FROM node:22-alpine AS base
22

33
FROM base AS deps
44
# Check the link to understand why libc6-compat might be needed

apps/web/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"@heroicons/react": "2.2.0",
1212
"@hono/node-server": "^1.13.7",
1313
"@icons-pack/react-simple-icons": "^12.7.0",
14-
"@infisical/sdk": "^3.0.4",
14+
"@infisical/sdk": "^4.0.0",
1515
"@payloadcms/richtext-lexical": "^3.23.0",
1616
"@radix-ui/react-checkbox": "^1.1.4",
1717
"@radix-ui/react-dialog": "^1.1.6",
@@ -29,7 +29,7 @@
2929
"class-variance-authority": "^0.7.0",
3030
"clsx": "^2.1.1",
3131
"hono": "^4.6.10",
32-
"isbot": "^4.4.0",
32+
"isbot": "^5.0.0",
3333
"jsonc-eslint-parser": "2.4.0",
3434
"lucide-react": "^0.539.0",
3535
"next-themes": "^0.4.6",
@@ -40,10 +40,10 @@
4040
"remix-hono": "^0.0.16",
4141
"remix-utils": "^8.4.0",
4242
"sonner": "^2.0.1",
43-
"tailwind-merge": "^2.3.0",
43+
"tailwind-merge": "^3.0.0",
4444
"tailwindcss-animate": "^1.0.7",
4545
"tiny-invariant": "^1.3.3",
46-
"zod": "^3.23.8"
46+
"zod": "^4.0.0"
4747
},
4848
"engines": {
4949
"node": ">=20"

package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
"@headlessui/react": "^2.2.0",
2020
"@heroicons/react": "^2.2.0",
2121
"@hono/node-server": "^1.13.7",
22-
"@hookform/resolvers": "^4.1.3",
22+
"@hookform/resolvers": "^5.0.0",
2323
"@icons-pack/react-simple-icons": "^12.6.0",
24-
"@infisical/sdk": "^3.0.4",
25-
"@ngneat/falso": "^7.3.0",
24+
"@infisical/sdk": "^4.0.0",
25+
"@ngneat/falso": "^8.0.0",
2626
"@octokit/request-error": "^5.0.1",
2727
"@payloadcms/db-mongodb": "3.34.0",
2828
"@payloadcms/db-postgres": "3.34.0",
@@ -57,11 +57,11 @@
5757
"graphql": "^16.10.0",
5858
"hono": "^4.6.10",
5959
"http-status-codes": "^2.3.0",
60-
"isbot": "^4.4.0",
60+
"isbot": "^5.0.0",
6161
"lucide-react": "^0.539.0",
6262
"next": "15.2.3",
6363
"next-themes": "^0.4.6",
64-
"nodemailer": "^6.10.0",
64+
"nodemailer": "^7.0.0",
6565
"nodemailer-sendgrid": "^1.0.3",
6666
"payload": "3.34.0",
6767
"prism-react-renderer": "^2.4.1",
@@ -77,18 +77,18 @@
7777
"sonner": "^2.0.1",
7878
"tailwind-merge": "^3.1.0",
7979
"tailwindcss": "^4.0.17",
80-
"zod": "^3.24.2"
80+
"zod": "^4.0.0"
8181
},
8282
"devDependencies": {
8383
"@babel/core": "^7.14.5",
8484
"@babel/preset-react": "^7.14.5",
8585
"@cdwr/nx-payload": "2.0.0",
8686
"@clack/prompts": "^0.11.0",
87-
"@commitlint/cli": "^19.0.0",
88-
"@commitlint/config-angular": "^19.0.0",
89-
"@commitlint/config-conventional": "^19.0.0",
87+
"@commitlint/cli": "^20.0.0",
88+
"@commitlint/config-angular": "^20.0.0",
89+
"@commitlint/config-conventional": "^20.0.0",
9090
"@eslint/compat": "^1.1.1",
91-
"@eslint/eslintrc": "^2.1.1",
91+
"@eslint/eslintrc": "^3.0.0",
9292
"@eslint/js": "^9.8.0",
9393
"@evilmartians/lefthook": "^1.8.0",
9494
"@homebridge/node-pty-prebuilt-multiarch": "^0.13.0",
@@ -109,10 +109,10 @@
109109
"@nx/web": "20.4.5",
110110
"@nx/webpack": "20.4.5",
111111
"@nx/workspace": "20.4.5",
112-
"@octokit/core": "6.1.6",
112+
"@octokit/core": "7.0.4",
113113
"@octokit/graphql-schema": "^15.25.0",
114-
"@octokit/plugin-rest-endpoint-methods": "^13.2.6",
115-
"@octokit/types": "^13.6.1",
114+
"@octokit/plugin-rest-endpoint-methods": "^16.0.0",
115+
"@octokit/types": "^15.0.0",
116116
"@octokit/webhooks-types": "^7.6.1",
117117
"@payloadcms/graphql": "3.34.0",
118118
"@playwright/test": "^1.36.0",
@@ -134,7 +134,7 @@
134134
"@types/jest": "^29.5.12",
135135
"@types/kill-port": "^2.0.3",
136136
"@types/node": "22.17.1",
137-
"@types/nodemailer": "^6.4.17",
137+
"@types/nodemailer": "^7.0.0",
138138
"@types/nodemailer-sendgrid": "^1.0.3",
139139
"@types/npm-whoami": "^1.1.2",
140140
"@types/react": "19.0.0",
@@ -146,7 +146,7 @@
146146
"@vitejs/plugin-react-swc": "^3.5.0",
147147
"@vitest/coverage-v8": "^1.0.4",
148148
"@vitest/ui": "^1.3.1",
149-
"babel-jest": "^29.7.0",
149+
"babel-jest": "^30.0.0",
150150
"chalk": "^4.1.0",
151151
"concurrently": "^9.1.2",
152152
"create-nx-workspace": "20.4.5",
@@ -168,7 +168,7 @@
168168
"jest-diff": "^29.7.0",
169169
"jest-environment-jsdom": "29.7.0",
170170
"jest-environment-node": "^29.7.0",
171-
"jsdom": "~26.1.0",
171+
"jsdom": "~27.0.0",
172172
"kill-port": "^2.0.1",
173173
"memfs": "^4.14.0",
174174
"nodemon": "^3.1.9",
@@ -189,21 +189,21 @@
189189
"ts-node": "10.9.2",
190190
"tslib": "^2.4.1",
191191
"tsx": "^4.19.2",
192-
"type-fest": "^4.26.1",
192+
"type-fest": "^5.0.0",
193193
"typescript": "~5.7.0",
194194
"typescript-eslint": "^8.0.0",
195195
"verdaccio": "^5.0.4",
196196
"vite": "^5.0.0",
197197
"vitest": "^1.3.1",
198-
"yargs": "^17.7.2"
198+
"yargs": "^18.0.0"
199199
},
200200
"nx": {
201201
"includedScripts": [
202202
"c",
203203
"commit"
204204
]
205205
},
206-
"packageManager": "pnpm@9.15.9",
206+
"packageManager": "pnpm@10.17.1",
207207
"engines": {
208208
"node": ">=20"
209209
},

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"tiny-invariant": "^1.3.3",
5050
"tree-kill": "^1.2.2",
5151
"vitest": "^1.6.0",
52-
"zod": "^3.23.8"
52+
"zod": "^4.0.0"
5353
},
5454
"type": "module",
5555
"exports": {

packages/create-nx-payload/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"create-nx-workspace": "20.4.5",
2525
"enquirer": "^2.4.1",
2626
"tslib": "^2.4.1",
27-
"yargs": "^17.7.2"
27+
"yargs": "^18.0.0"
2828
},
2929
"bin": {
3030
"create-nx-payload": "./bin/index.js"

0 commit comments

Comments
 (0)