Skip to content

Commit 75acf58

Browse files
chore(deps): update weekly dependencies
1 parent fc22ee9 commit 75acf58

18 files changed

Lines changed: 3072 additions & 772 deletions

File tree

.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@v6
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: 24
4747
cache: pnpm
4848

4949
- name: Install dependencies

.github/workflows/e2e-matrix.yml

Lines changed: 7 additions & 7 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@v6
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@v6
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 }}
@@ -180,7 +180,7 @@ jobs:
180180

181181
- name: Upload test results
182182
if: always()
183-
uses: actions/upload-artifact@v4
183+
uses: actions/upload-artifact@v5
184184
with:
185185
name: results-${{ matrix.project }}-${{ matrix.os }}-${{ matrix.pm }}-${{ matrix.node }}
186186
path: results-${{ matrix.project }}-${{ matrix.os }}-${{ matrix.pm }}-${{ matrix.node }}.json
@@ -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@v6
196196
with:
197197
path: artifacts
198198
pattern: results-*
@@ -232,7 +232,7 @@ jobs:
232232
echo "</details>" >> summary.md
233233
234234
- name: Upload summary artifact
235-
uses: actions/upload-artifact@v4
235+
uses: actions/upload-artifact@v5
236236
with:
237237
name: e2e-test-summary
238238
path: summary.md

.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@v6
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@v6
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@v6
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: 24
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@v6
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: 24
102102
cache: pnpm
103103
registry-url: https://registry.npmjs.org/
104104

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.19.5
1+
24.11.1

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.19.5
1+
24.11.1

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-bullseye-slim AS base
1+
FROM node:24-bullseye-slim AS base
22

33
FROM base AS deps
44
RUN apt-get update \

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: 21 additions & 21 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",
@@ -55,7 +55,7 @@
5555
"graphql": "^16.10.0",
5656
"hono": "^4.6.10",
5757
"http-status-codes": "^2.3.0",
58-
"isbot": "^4.4.0",
58+
"isbot": "^5.0.0",
5959
"lucide-react": "^0.539.0",
6060
"next": "15.2.5",
6161
"next-themes": "^0.4.6",
@@ -75,20 +75,20 @@
7575
"sonner": "^2.0.1",
7676
"tailwind-merge": "^3.1.0",
7777
"tailwindcss": "^4.0.17",
78-
"zod": "^3.24.2"
78+
"zod": "^4.0.0"
7979
},
8080
"devDependencies": {
8181
"@babel/core": "^7.14.5",
8282
"@babel/preset-react": "^7.14.5",
8383
"@cdwr/nx-payload": "2.0.0",
8484
"@clack/prompts": "^0.11.0",
85-
"@commitlint/cli": "^19.0.0",
86-
"@commitlint/config-angular": "^19.0.0",
87-
"@commitlint/config-conventional": "^19.0.0",
88-
"@eslint/compat": "^1.1.1",
89-
"@eslint/eslintrc": "^2.1.1",
85+
"@commitlint/cli": "^20.0.0",
86+
"@commitlint/config-angular": "^20.0.0",
87+
"@commitlint/config-conventional": "^20.0.0",
88+
"@eslint/compat": "^2.0.0",
89+
"@eslint/eslintrc": "^3.0.0",
9090
"@eslint/js": "^9.8.0",
91-
"@evilmartians/lefthook": "^1.8.0",
91+
"@evilmartians/lefthook": "^2.0.0",
9292
"@homebridge/node-pty-prebuilt-multiarch": "^0.13.0",
9393
"@nx/cypress": "22.1.1",
9494
"@nx/devkit": "22.1.1",
@@ -107,10 +107,10 @@
107107
"@nx/web": "22.1.1",
108108
"@nx/webpack": "22.1.1",
109109
"@nx/workspace": "22.1.1",
110-
"@octokit/core": "6.1.6",
110+
"@octokit/core": "7.0.6",
111111
"@octokit/graphql-schema": "^15.25.0",
112-
"@octokit/plugin-rest-endpoint-methods": "^13.2.6",
113-
"@octokit/types": "^13.6.1",
112+
"@octokit/plugin-rest-endpoint-methods": "^17.0.0",
113+
"@octokit/types": "^16.0.0",
114114
"@octokit/webhooks-types": "^7.6.1",
115115
"@payloadcms/graphql": "3.34.0",
116116
"@playwright/test": "^1.36.0",
@@ -131,8 +131,8 @@
131131
"@testing-library/user-event": "^14.5.2",
132132
"@types/jest": "30.0.0",
133133
"@types/kill-port": "^2.0.3",
134-
"@types/node": "22.17.1",
135-
"@types/nodemailer": "^6.4.17",
134+
"@types/node": "24.10.1",
135+
"@types/nodemailer": "^7.0.0",
136136
"@types/nodemailer-sendgrid": "^1.0.3",
137137
"@types/npm-whoami": "^1.1.2",
138138
"@types/react": "19.0.0",
@@ -161,15 +161,15 @@
161161
"eslint-plugin-jsx-a11y": "6.10.2",
162162
"eslint-plugin-playwright": "^2.0.0",
163163
"eslint-plugin-react": "7.37.5",
164-
"eslint-plugin-react-hooks": "5.2.0",
164+
"eslint-plugin-react-hooks": "7.0.1",
165165
"graphql-config": "^5.1.3",
166166
"jest": "30.0.5",
167167
"jest-diff": "^29.7.0",
168168
"jest-environment-jsdom": "30.0.5",
169169
"jest-environment-node": "^30.1.2",
170170
"jest-util": "~30.0.0",
171171
"jiti": "2.4.2",
172-
"jsdom": "~26.1.0",
172+
"jsdom": "~27.2.0",
173173
"kill-port": "^2.0.1",
174174
"memfs": "^4.14.0",
175175
"nodemon": "^3.1.9",
@@ -190,21 +190,21 @@
190190
"ts-node": "10.9.2",
191191
"tslib": "^2.4.1",
192192
"tsx": "^4.19.2",
193-
"type-fest": "^4.26.1",
193+
"type-fest": "^5.0.0",
194194
"typescript": "5.9.2",
195195
"typescript-eslint": "^8.0.0",
196196
"verdaccio": "6.1.6",
197197
"vite": "6.3.6",
198198
"vitest": "^1.3.1",
199-
"yargs": "^17.7.2"
199+
"yargs": "^18.0.0"
200200
},
201201
"nx": {
202202
"includedScripts": [
203203
"c",
204204
"commit"
205205
]
206206
},
207-
"packageManager": "pnpm@9.15.9",
207+
"packageManager": "pnpm@10.24.0",
208208
"engines": {
209209
"node": ">=20"
210210
},

0 commit comments

Comments
 (0)