Skip to content

Commit cd4834c

Browse files
chore(deps): update weekly dependencies
1 parent 8cd8468 commit cd4834c

19 files changed

Lines changed: 1029 additions & 814 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: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
echo "run_status=$run_status" >> "$GITHUB_OUTPUT"
8080
echo "reason=$reason" >> "$GITHUB_OUTPUT"
8181
82-
- uses: actions/checkout@v4
82+
- uses: actions/checkout@v6
8383
if: steps.gate.outputs.run_status == 'true'
8484
with:
8585
fetch-depth: 0
@@ -90,9 +90,9 @@ jobs:
9090

9191
- name: Setup Node.js
9292
if: steps.gate.outputs.run_status == 'true'
93-
uses: actions/setup-node@v4
93+
uses: actions/setup-node@v6
9494
with:
95-
node-version: 20
95+
node-version: 24
9696
cache: pnpm
9797

9898
- name: Install dependencies
@@ -139,19 +139,19 @@ jobs:
139139

140140
name: Cache install (${{ matrix.os }}, node v${{ matrix.node }})
141141
steps:
142-
- uses: actions/checkout@v4
142+
- uses: actions/checkout@v6
143143
with:
144144
fetch-depth: 0
145145

146146
- name: Install pnpm package manager
147147
uses: pnpm/action-setup@v4
148148

149-
- uses: actions/setup-node@v4
149+
- uses: actions/setup-node@v6
150150
with:
151151
node-version: ${{ matrix.node }}
152152
cache: pnpm
153153

154-
- uses: actions/cache@v4
154+
- uses: actions/cache@v5
155155
id: cache-modules
156156
with:
157157
lookup-only: true
@@ -162,7 +162,7 @@ jobs:
162162
run: pnpm install --frozen-lockfile
163163

164164
- name: Cache Playwright browsers
165-
uses: actions/cache@v4
165+
uses: actions/cache@v5
166166
id: cache-playwright
167167
with:
168168
path: ~/.cache/ms-playwright
@@ -219,19 +219,19 @@ jobs:
219219

220220
name: E2E ${{ matrix.os }}/${{ matrix.pm }}/${{ matrix.node }}
221221
steps:
222-
- uses: actions/checkout@v4
222+
- uses: actions/checkout@v6
223223
with:
224224
fetch-depth: 0
225225

226226
- name: Install pnpm package manager
227227
uses: pnpm/action-setup@v4
228228

229-
- uses: actions/setup-node@v4
229+
- uses: actions/setup-node@v6
230230
with:
231231
node-version: ${{ matrix.node }}
232232
cache: pnpm
233233

234-
- uses: actions/cache@v4
234+
- uses: actions/cache@v5
235235
id: cache-modules
236236
with:
237237
path: "**/node_modules"
@@ -285,7 +285,7 @@ jobs:
285285

286286
- name: Upload test results
287287
if: always()
288-
uses: actions/upload-artifact@v4
288+
uses: actions/upload-artifact@v6
289289
with:
290290
name: results-${{ matrix.os }}-${{ matrix.pm }}-${{ matrix.node }}
291291
path: results-${{ matrix.os }}-${{ matrix.pm }}-${{ matrix.node }}.json
@@ -298,7 +298,7 @@ jobs:
298298
steps:
299299
- name: Download all workflow run artifacts
300300
if: needs.e2e.result != 'skipped'
301-
uses: actions/download-artifact@v4
301+
uses: actions/download-artifact@v7
302302
with:
303303
path: artifacts
304304
pattern: results-*
@@ -366,7 +366,7 @@ jobs:
366366
fi
367367
368368
- name: Upload summary artifact
369-
uses: actions/upload-artifact@v4
369+
uses: actions/upload-artifact@v6
370370
with:
371371
name: e2e-test-summary
372372
path: summary.md

.github/workflows/fly-deployment.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ jobs:
6666
skip: ${{ steps.preview.outputs.skip }}
6767

6868
steps:
69-
- uses: actions/checkout@v4
69+
- uses: actions/checkout@v6
7070
with:
7171
fetch-depth: 0
7272

73-
- uses: actions/github-script@v7
73+
- uses: actions/github-script@v8
7474
id: preview
7575
env:
7676
PREVIEW_LABEL: ${{ env.FLY_PREVIEW_LABEL }}
@@ -90,13 +90,13 @@ jobs:
9090
app-tenants: ${{ steps.pre-deploy.outputs.app-tenants }}
9191

9292
steps:
93-
- uses: actions/checkout@v4
93+
- uses: actions/checkout@v6
9494
with:
9595
fetch-depth: 0
9696

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

99-
- uses: actions/setup-node@v4
99+
- uses: actions/setup-node@v6
100100
with:
101101
cache: "pnpm"
102102

@@ -136,19 +136,19 @@ jobs:
136136
environment: ${{ needs.pre-deploy.outputs.environment }}
137137

138138
steps:
139-
- uses: actions/create-github-app-token@v1
139+
- uses: actions/create-github-app-token@v2
140140
id: generate-token
141141
with:
142142
app-id: ${{ secrets.CDWR_ACTIONS_BOT_ID }}
143143
private-key: ${{ secrets.CDWR_ACTIONS_BOT_PRIVATE_KEY }}
144144

145-
- uses: actions/checkout@v4
145+
- uses: actions/checkout@v6
146146
with:
147147
fetch-depth: 0
148148

149149
- uses: pnpm/action-setup@v4
150150

151-
- uses: actions/setup-node@v4
151+
- uses: actions/setup-node@v6
152152
with:
153153
cache: "pnpm"
154154

.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.6
1+
24.13.1

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.19.6
1+
24.13.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
RUN apt-get update \
44
&& apt-get install -y --no-install-recommends \

apps/web/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
"class-variance-authority": "^0.7.0",
3333
"clsx": "^2.1.1",
3434
"hono": "^4.6.10",
35-
"isbot": "^4.4.0",
36-
"jsonc-eslint-parser": "2.4.2",
35+
"isbot": "^5.0.0",
36+
"jsonc-eslint-parser": "3.0.0",
3737
"lucide-react": "^0.562.0",
3838
"next-themes": "^0.4.6",
3939
"prism-react-renderer": "2.4.1",
@@ -43,10 +43,10 @@
4343
"remix-hono": "^0.0.16",
4444
"remix-utils": "^8.4.0",
4545
"sonner": "^2.0.1",
46-
"tailwind-merge": "^2.3.0",
46+
"tailwind-merge": "^3.0.0",
4747
"tailwindcss-animate": "^1.0.7",
4848
"tiny-invariant": "^1.3.3",
49-
"zod": "^3.23.8"
49+
"zod": "^4.0.0"
5050
},
5151
"engines": {
5252
"node": ">=20"

package.json

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@
1111
"private": true,
1212
"type": "module",
1313
"dependencies": {
14-
"@actions/core": "^1.11.1",
15-
"@actions/exec": "^1.1.1",
16-
"@actions/github": "^6.0.0",
14+
"@actions/core": "^3.0.0",
15+
"@actions/exec": "^3.0.0",
16+
"@actions/github": "^9.0.0",
1717
"@conform-to/react": "^1.2.2",
1818
"@conform-to/zod": "^1.2.2",
1919
"@epic-web/client-hints": "^1.3.5",
2020
"@headlessui/react": "^2.2.0",
2121
"@heroicons/react": "^2.2.0",
2222
"@hono/node-server": "^1.13.7",
23-
"@hookform/resolvers": "^4.1.3",
23+
"@hookform/resolvers": "^5.0.0",
2424
"@icons-pack/react-simple-icons": "^12.6.0",
2525
"@infisical/sdk": "^4.0.6",
26-
"@ngneat/falso": "^7.3.0",
26+
"@ngneat/falso": "^8.0.0",
2727
"@octokit/request-error": "^5.0.1",
2828
"@payloadcms/db-mongodb": "~3.69.0",
2929
"@payloadcms/db-postgres": "~3.69.0",
@@ -64,12 +64,12 @@
6464
"graphql": "^16.10.0",
6565
"hono": "^4.6.10",
6666
"http-status-codes": "^2.3.0",
67-
"isbot": "^4.4.0",
67+
"isbot": "^5.0.0",
6868
"lucide-react": "^0.562.0",
6969
"mime-types": "^3.0.1",
7070
"next": "~15.4.5",
7171
"next-themes": "^0.4.6",
72-
"nodemailer": "^7.0.0",
72+
"nodemailer": "^8.0.0",
7373
"nodemailer-sendgrid": "^1.0.3",
7474
"payload": "~3.69.0",
7575
"prism-react-renderer": "^2.4.1",
@@ -85,19 +85,19 @@
8585
"sonner": "^2.0.1",
8686
"tailwind-merge": "^3.1.0",
8787
"tailwindcss": "^4.0.17",
88-
"zod": "^3.24.2"
88+
"zod": "^4.0.0"
8989
},
9090
"devDependencies": {
9191
"@babel/core": "^7.14.5",
9292
"@babel/preset-react": "^7.14.5",
93-
"@clack/prompts": "^0.11.0",
94-
"@commitlint/cli": "^19.0.0",
95-
"@commitlint/config-angular": "^19.0.0",
96-
"@commitlint/config-conventional": "^19.0.0",
97-
"@eslint/compat": "^1.1.1",
98-
"@eslint/eslintrc": "^2.1.1",
99-
"@eslint/js": "^9.8.0",
100-
"@evilmartians/lefthook": "^1.8.0",
93+
"@clack/prompts": "^1.0.0",
94+
"@commitlint/cli": "^20.0.0",
95+
"@commitlint/config-angular": "^20.0.0",
96+
"@commitlint/config-conventional": "^20.0.0",
97+
"@eslint/compat": "^2.0.0",
98+
"@eslint/eslintrc": "^3.0.0",
99+
"@eslint/js": "^10.0.0",
100+
"@evilmartians/lefthook": "^2.0.0",
101101
"@homebridge/node-pty-prebuilt-multiarch": "^0.13.0",
102102
"@nx/cypress": "22.5.0",
103103
"@nx/devkit": "22.5.0",
@@ -117,10 +117,10 @@
117117
"@nx/web": "22.5.0",
118118
"@nx/webpack": "22.5.0",
119119
"@nx/workspace": "22.5.0",
120-
"@octokit/core": "6.1.6",
120+
"@octokit/core": "7.0.6",
121121
"@octokit/graphql-schema": "^15.25.0",
122-
"@octokit/plugin-rest-endpoint-methods": "^13.2.6",
123-
"@octokit/types": "^13.6.1",
122+
"@octokit/plugin-rest-endpoint-methods": "^17.0.0",
123+
"@octokit/types": "^16.0.0",
124124
"@octokit/webhooks-types": "^7.6.1",
125125
"@payloadcms/graphql": "~3.69.0",
126126
"@playwright/test": "^1.36.0",
@@ -142,9 +142,9 @@
142142
"@testing-library/user-event": "^14.5.2",
143143
"@types/jest": "30.0.0",
144144
"@types/kill-port": "^2.0.3",
145-
"@types/mime-types": "^2.1.4",
146-
"@types/node": "22.19.3",
147-
"@types/nodemailer": "^6.4.17",
145+
"@types/mime-types": "^3.0.0",
146+
"@types/node": "24.10.13",
147+
"@types/nodemailer": "^7.0.0",
148148
"@types/nodemailer-sendgrid": "^1.0.3",
149149
"@types/npm-whoami": "^1.1.2",
150150
"@types/react": "19.0.0",
@@ -174,7 +174,7 @@
174174
"eslint-plugin-jsx-a11y": "6.10.2",
175175
"eslint-plugin-playwright": "^2.0.0",
176176
"eslint-plugin-react": "7.37.5",
177-
"eslint-plugin-react-hooks": "5.2.0",
177+
"eslint-plugin-react-hooks": "7.0.1",
178178
"graphql-config": "^5.1.3",
179179
"is-ci": "^4.1.0",
180180
"jest": "30.0.5",
@@ -183,7 +183,7 @@
183183
"jest-environment-node": "^30.1.2",
184184
"jest-util": "~30.0.0",
185185
"jiti": "2.6.1",
186-
"jsdom": "~26.1.0",
186+
"jsdom": "~28.1.0",
187187
"kill-port": "^2.0.1",
188188
"memfs": "^4.14.0",
189189
"nodemon": "^3.1.9",
@@ -204,23 +204,23 @@
204204
"ts-node": "10.9.2",
205205
"tslib": "^2.4.1",
206206
"tsx": "^4.19.2",
207-
"type-fest": "^4.26.1",
207+
"type-fest": "^5.0.0",
208208
"typescript": "5.9.2",
209209
"typescript-eslint": "^8.0.0",
210210
"verdaccio": "6.1.6",
211211
"vite": "6.3.6",
212212
"vitest": "^1.3.1",
213-
"yargs": "^17.7.2"
213+
"yargs": "^18.0.0"
214214
},
215215
"nx": {
216216
"includedScripts": [
217217
"c",
218218
"commit"
219219
]
220220
},
221-
"packageManager": "pnpm@9.15.9",
221+
"packageManager": "pnpm@10.30.1",
222222
"engines": {
223-
"node": ">=20 <22"
223+
"node": ">=20 <25"
224224
},
225225
"overrides": {
226226
"react": "$react",

0 commit comments

Comments
 (0)