Skip to content

Commit 31c0773

Browse files
chore(deps): update weekly dependencies
1 parent 112fed3 commit 31c0773

File tree

16 files changed

+2486
-438
lines changed

16 files changed

+2486
-438
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@v6
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@v6
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@v6
133133
if: needs.init.outputs.e2e-enabled == 'true'
134134
with:
135135
node-version: ${{ matrix.node }}
@@ -192,7 +192,7 @@ jobs:
192192
if: always()
193193
steps:
194194
- name: Download all workflow run artifacts
195-
uses: actions/download-artifact@v4
195+
uses: actions/download-artifact@v5
196196
with:
197197
path: artifacts
198198
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@v6
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@v6
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@v6
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
@@ -88,17 +88,17 @@ jobs:
8888
# Unified checkout for all cases:
8989
# - tag push or release -> checks out that tag
9090
# - manual w/o tag -> checks out the branch chosen in the UI (or default branch)
91-
- uses: actions/checkout@v4
91+
- uses: actions/checkout@v5
9292
with:
9393
ref: ${{ steps.ctx.outputs.tag || github.ref }}
9494
fetch-depth: 0
9595
filter: tree:0
9696

9797
- uses: pnpm/action-setup@v4
9898

99-
- uses: actions/setup-node@v4
99+
- uses: actions/setup-node@v6
100100
with:
101-
node-version: 20
101+
node-version: 22
102102
cache: pnpm
103103
registry-url: https://registry.npmjs.org/
104104

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: 18 additions & 18 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,7 +57,7 @@
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.5",
6363
"next-themes": "^0.4.6",
@@ -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": "21.6.5",
110110
"@nx/webpack": "21.6.5",
111111
"@nx/workspace": "21.6.5",
112-
"@octokit/core": "6.1.6",
112+
"@octokit/core": "7.0.5",
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": "30.0.0",
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",
@@ -162,15 +162,15 @@
162162
"eslint-plugin-jsx-a11y": "6.10.2",
163163
"eslint-plugin-playwright": "^2.0.0",
164164
"eslint-plugin-react": "7.37.5",
165-
"eslint-plugin-react-hooks": "5.2.0",
165+
"eslint-plugin-react-hooks": "7.0.0",
166166
"graphql-config": "^5.1.3",
167167
"jest": "30.0.5",
168168
"jest-diff": "^29.7.0",
169169
"jest-environment-jsdom": "30.0.5",
170170
"jest-environment-node": "^30.1.2",
171171
"jest-util": "~30.0.0",
172172
"jiti": "2.4.2",
173-
"jsdom": "~26.1.0",
173+
"jsdom": "~27.0.0",
174174
"kill-port": "^2.0.1",
175175
"memfs": "^4.14.0",
176176
"nodemon": "^3.1.9",
@@ -191,21 +191,21 @@
191191
"ts-node": "10.9.2",
192192
"tslib": "^2.4.1",
193193
"tsx": "^4.19.2",
194-
"type-fest": "^4.26.1",
194+
"type-fest": "^5.0.0",
195195
"typescript": "5.9.2",
196196
"typescript-eslint": "^8.0.0",
197197
"verdaccio": "6.1.6",
198198
"vite": "6.3.6",
199199
"vitest": "^1.3.1",
200-
"yargs": "^17.7.2"
200+
"yargs": "^18.0.0"
201201
},
202202
"nx": {
203203
"includedScripts": [
204204
"c",
205205
"commit"
206206
]
207207
},
208-
"packageManager": "pnpm@9.15.9",
208+
"packageManager": "pnpm@10.18.3",
209209
"engines": {
210210
"node": ">=20"
211211
},

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": "21.6.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)