Skip to content

Commit 1bf5492

Browse files
chore(deps): update weekly dependencies
1 parent 4314b3d commit 1bf5492

19 files changed

Lines changed: 1843 additions & 1695 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@v7
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@v8
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@v7
370370
with:
371371
name: e2e-test-summary
372372
path: summary.md

.github/workflows/fly-deployment.yml

Lines changed: 6 additions & 6 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

@@ -142,13 +142,13 @@ jobs:
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
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.14.0

.nvmrc

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

apps/web/package.json

Lines changed: 5 additions & 5 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": "^4.0.6",
14+
"@infisical/sdk": "^5.0.0",
1515
"@payloadcms/richtext-lexical": "~3.69.0",
1616
"@radix-ui/react-aspect-ratio": "^1.1.8",
1717
"@radix-ui/react-checkbox": "^1.1.4",
@@ -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.1.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"

0 commit comments

Comments
 (0)