Skip to content

Commit ef99dfd

Browse files
chore(deps): update weekly dependencies
1 parent 1f84ea7 commit ef99dfd

19 files changed

Lines changed: 1575 additions & 568 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: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -58,19 +58,19 @@ 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
7272

73-
- uses: actions/cache@v4
73+
- uses: actions/cache@v5
7474
id: cache-modules
7575
with:
7676
lookup-only: true
@@ -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,13 +129,13 @@ 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 }}
136136
cache: pnpm
137137

138-
- uses: actions/cache@v4
138+
- uses: actions/cache@v5
139139
if: needs.init.outputs.e2e-enabled == 'true'
140140
id: cache-modules
141141
with:
@@ -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@v6
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@v7
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@v6
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
@@ -41,13 +41,13 @@ jobs:
4141
app-tenants: ${{ steps.pre-deploy.outputs.app-tenants }}
4242

4343
steps:
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v6
4545
with:
4646
fetch-depth: 0
4747

4848
- uses: pnpm/action-setup@v4
4949

50-
- uses: actions/setup-node@v4
50+
- uses: actions/setup-node@v6
5151
with:
5252
cache: "pnpm"
5353

@@ -84,19 +84,19 @@ jobs:
8484
environment: ${{ needs.pre-deploy.outputs.environment }}
8585

8686
steps:
87-
- uses: actions/create-github-app-token@v1
87+
- uses: actions/create-github-app-token@v2
8888
id: generate-token
8989
with:
9090
app-id: ${{ secrets.CDWR_ACTIONS_BOT_ID }}
9191
private-key: ${{ secrets.CDWR_ACTIONS_BOT_PRIVATE_KEY }}
9292

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

.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.12.0

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.19.6
1+
24.12.0

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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"class-variance-authority": "^0.7.0",
3333
"clsx": "^2.1.1",
3434
"hono": "^4.6.10",
35-
"isbot": "^4.4.0",
35+
"isbot": "^5.0.0",
3636
"jsonc-eslint-parser": "2.4.2",
3737
"lucide-react": "^0.562.0",
3838
"next-themes": "^0.4.6",
@@ -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: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@
1010
},
1111
"private": true,
1212
"dependencies": {
13-
"@actions/core": "^1.11.1",
14-
"@actions/exec": "^1.1.1",
13+
"@actions/core": "^2.0.0",
14+
"@actions/exec": "^2.0.0",
1515
"@actions/github": "^6.0.0",
1616
"@conform-to/react": "^1.2.2",
1717
"@conform-to/zod": "^1.2.2",
1818
"@epic-web/client-hints": "^1.3.5",
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",
2424
"@infisical/sdk": "^4.0.6",
25-
"@ngneat/falso": "^7.3.0",
25+
"@ngneat/falso": "^8.0.0",
2626
"@octokit/request-error": "^5.0.1",
2727
"@payloadcms/db-mongodb": "~3.36.0",
2828
"@payloadcms/db-postgres": "~3.36.0",
@@ -59,7 +59,7 @@
5959
"graphql": "^16.10.0",
6060
"hono": "^4.6.10",
6161
"http-status-codes": "^2.3.0",
62-
"isbot": "^4.4.0",
62+
"isbot": "^5.0.0",
6363
"lucide-react": "^0.562.0",
6464
"mime-types": "^3.0.1",
6565
"next": "15.2.5",
@@ -80,19 +80,19 @@
8080
"sonner": "^2.0.1",
8181
"tailwind-merge": "^3.1.0",
8282
"tailwindcss": "^4.0.17",
83-
"zod": "^3.24.2"
83+
"zod": "^4.0.0"
8484
},
8585
"devDependencies": {
8686
"@babel/core": "^7.14.5",
8787
"@babel/preset-react": "^7.14.5",
8888
"@clack/prompts": "^0.11.0",
89-
"@commitlint/cli": "^19.0.0",
90-
"@commitlint/config-angular": "^19.0.0",
91-
"@commitlint/config-conventional": "^19.0.0",
92-
"@eslint/compat": "^1.1.1",
93-
"@eslint/eslintrc": "^2.1.1",
89+
"@commitlint/cli": "^20.0.0",
90+
"@commitlint/config-angular": "^20.0.0",
91+
"@commitlint/config-conventional": "^20.0.0",
92+
"@eslint/compat": "^2.0.0",
93+
"@eslint/eslintrc": "^3.0.0",
9494
"@eslint/js": "^9.8.0",
95-
"@evilmartians/lefthook": "^1.8.0",
95+
"@evilmartians/lefthook": "^2.0.0",
9696
"@homebridge/node-pty-prebuilt-multiarch": "^0.13.0",
9797
"@nx/cypress": "22.3.3",
9898
"@nx/devkit": "22.3.3",
@@ -112,10 +112,10 @@
112112
"@nx/web": "22.3.3",
113113
"@nx/webpack": "22.3.3",
114114
"@nx/workspace": "22.3.3",
115-
"@octokit/core": "6.1.6",
115+
"@octokit/core": "7.0.6",
116116
"@octokit/graphql-schema": "^15.25.0",
117-
"@octokit/plugin-rest-endpoint-methods": "^13.2.6",
118-
"@octokit/types": "^13.6.1",
117+
"@octokit/plugin-rest-endpoint-methods": "^17.0.0",
118+
"@octokit/types": "^16.0.0",
119119
"@octokit/webhooks-types": "^7.6.1",
120120
"@payloadcms/graphql": "~3.36.0",
121121
"@playwright/test": "^1.36.0",
@@ -136,9 +136,9 @@
136136
"@testing-library/user-event": "^14.5.2",
137137
"@types/jest": "30.0.0",
138138
"@types/kill-port": "^2.0.3",
139-
"@types/mime-types": "^2.1.4",
140-
"@types/node": "22.19.3",
141-
"@types/nodemailer": "^6.4.17",
139+
"@types/mime-types": "^3.0.0",
140+
"@types/node": "24.10.4",
141+
"@types/nodemailer": "^7.0.0",
142142
"@types/nodemailer-sendgrid": "^1.0.3",
143143
"@types/npm-whoami": "^1.1.2",
144144
"@types/react": "19.0.0",
@@ -168,7 +168,7 @@
168168
"eslint-plugin-jsx-a11y": "6.10.2",
169169
"eslint-plugin-playwright": "^2.0.0",
170170
"eslint-plugin-react": "7.37.5",
171-
"eslint-plugin-react-hooks": "5.2.0",
171+
"eslint-plugin-react-hooks": "7.0.1",
172172
"graphql-config": "^5.1.3",
173173
"is-ci": "^4.1.0",
174174
"jest": "30.0.5",
@@ -177,7 +177,7 @@
177177
"jest-environment-node": "^30.1.2",
178178
"jest-util": "~30.0.0",
179179
"jiti": "2.6.1",
180-
"jsdom": "~26.1.0",
180+
"jsdom": "~27.4.0",
181181
"kill-port": "^2.0.1",
182182
"memfs": "^4.14.0",
183183
"nodemon": "^3.1.9",
@@ -198,23 +198,23 @@
198198
"ts-node": "10.9.2",
199199
"tslib": "^2.4.1",
200200
"tsx": "^4.19.2",
201-
"type-fest": "^4.26.1",
201+
"type-fest": "^5.0.0",
202202
"typescript": "5.9.2",
203203
"typescript-eslint": "^8.0.0",
204204
"verdaccio": "6.1.6",
205205
"vite": "6.3.6",
206206
"vitest": "^1.3.1",
207-
"yargs": "^17.7.2"
207+
"yargs": "^18.0.0"
208208
},
209209
"nx": {
210210
"includedScripts": [
211211
"c",
212212
"commit"
213213
]
214214
},
215-
"packageManager": "pnpm@9.15.9",
215+
"packageManager": "pnpm@10.27.0",
216216
"engines": {
217-
"node": ">=20 <22"
217+
"node": ">=20 <25"
218218
},
219219
"overrides": {
220220
"@swc/core": "1.13.20",

0 commit comments

Comments
 (0)