Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Install pnpm package manager
uses: pnpm/action-setup@v4
uses: pnpm/action-setup@v5

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: 20
node-version: 24
cache: pnpm

- name: Install dependencies
Expand All @@ -58,7 +58,7 @@ jobs:
version: ${{ vars.FLY_CLI_VERSION }}

- name: Analyze affected projects
uses: nrwl/nx-set-shas@v4
uses: nrwl/nx-set-shas@v5

- name: Format check (Nx Cloud)
if: env.NX_NO_CLOUD != 'true'
Expand Down Expand Up @@ -94,6 +94,6 @@ jobs:
- name: Nx Self-healing CI
run: pnpm nx fix-ci

- uses: codecov/codecov-action@v5
- uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
36 changes: 18 additions & 18 deletions .github/workflows/e2e-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,20 +79,20 @@ jobs:
echo "run_status=$run_status" >> "$GITHUB_OUTPUT"
echo "reason=$reason" >> "$GITHUB_OUTPUT"

- uses: actions/checkout@v4
- uses: actions/checkout@v6
if: steps.gate.outputs.run_status == 'true'
with:
fetch-depth: 0

- name: Install pnpm package manager
if: steps.gate.outputs.run_status == 'true'
uses: pnpm/action-setup@v4
uses: pnpm/action-setup@v5

- name: Setup Node.js
if: steps.gate.outputs.run_status == 'true'
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 20
node-version: 24
cache: pnpm

- name: Install dependencies
Expand All @@ -101,7 +101,7 @@ jobs:

- name: Resolve Nx base and head
if: steps.gate.outputs.run_status == 'true'
uses: nrwl/nx-set-shas@v4
uses: nrwl/nx-set-shas@v5
with:
# For schedule: compare against last successful nightly run
# For PR/push: normal base/head comparison
Expand Down Expand Up @@ -139,19 +139,19 @@ jobs:

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

- name: Install pnpm package manager
uses: pnpm/action-setup@v4
uses: pnpm/action-setup@v5

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: pnpm

- uses: actions/cache@v4
- uses: actions/cache@v5
id: cache-modules
with:
lookup-only: true
Expand All @@ -162,7 +162,7 @@ jobs:
run: pnpm install --frozen-lockfile

- name: Cache Playwright browsers
uses: actions/cache@v4
uses: actions/cache@v5
id: cache-playwright
with:
path: ~/.cache/ms-playwright
Expand Down Expand Up @@ -219,19 +219,19 @@ jobs:

name: E2E ${{ matrix.os }}/${{ matrix.pm }}/${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Install pnpm package manager
uses: pnpm/action-setup@v4
uses: pnpm/action-setup@v5

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: pnpm

- uses: actions/cache@v4
- uses: actions/cache@v5
id: cache-modules
with:
path: "**/node_modules"
Expand All @@ -245,7 +245,7 @@ jobs:
run: pnpm exec playwright install-deps

- name: Analyze affected projects
uses: nrwl/nx-set-shas@v4
uses: nrwl/nx-set-shas@v5

- name: Record start time
id: start
Expand Down Expand Up @@ -285,7 +285,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: results-${{ matrix.os }}-${{ matrix.pm }}-${{ matrix.node }}
path: results-${{ matrix.os }}-${{ matrix.pm }}-${{ matrix.node }}.json
Expand All @@ -298,7 +298,7 @@ jobs:
steps:
- name: Download all workflow run artifacts
if: needs.e2e.result != 'skipped'
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
path: artifacts
pattern: results-*
Expand Down Expand Up @@ -366,7 +366,7 @@ jobs:
fi

- name: Upload summary artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: e2e-test-summary
path: summary.md
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/fly-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ jobs:
skip: ${{ steps.preview.outputs.skip }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

- uses: actions/github-script@v7
- uses: actions/github-script@v8
id: preview
env:
PREVIEW_LABEL: ${{ env.FLY_PREVIEW_LABEL }}
Expand All @@ -90,13 +90,13 @@ jobs:
app-tenants: ${{ steps.pre-deploy.outputs.app-tenants }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

- uses: pnpm/action-setup@v4
- uses: pnpm/action-setup@v5

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
cache: "pnpm"

Expand All @@ -107,7 +107,7 @@ jobs:
run: pnpm nx build nx-pre-deploy-action

- name: Set SHAs for affected calculations
uses: nrwl/nx-set-shas@v4
uses: nrwl/nx-set-shas@v5
with:
main-branch-name: main
set-environment-variables-for-job: true
Expand Down Expand Up @@ -136,19 +136,19 @@ jobs:
environment: ${{ needs.pre-deploy.outputs.environment }}

steps:
- uses: actions/create-github-app-token@v1
- uses: actions/create-github-app-token@v3
id: generate-token
with:
app-id: ${{ secrets.CDWR_ACTIONS_BOT_ID }}
private-key: ${{ secrets.CDWR_ACTIONS_BOT_PRIVATE_KEY }}

- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

- uses: pnpm/action-setup@v4
- uses: pnpm/action-setup@v5

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
cache: "pnpm"

Expand All @@ -164,7 +164,7 @@ jobs:
version: ${{ vars.FLY_CLI_VERSION }}

- name: Set SHAs for affected calculations
uses: nrwl/nx-set-shas@v4
uses: nrwl/nx-set-shas@v5
with:
main-branch-name: main
set-environment-variables-for-job: true
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/nx-migrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/create-github-app-token@v1
- uses: actions/create-github-app-token@v3
id: generate-token
with:
app-id: ${{ secrets.CDWR_ACTIONS_BOT_ID }}
private-key: ${{ secrets.CDWR_ACTIONS_BOT_PRIVATE_KEY }}

- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: pnpm/action-setup@v4
- uses: pnpm/action-setup@v5

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: 20
node-version: 24
cache: pnpm

- name: Install dependencies
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,17 +88,17 @@ jobs:
# Unified checkout for all cases:
# - tag push or release -> checks out that tag
# - manual w/o tag -> checks out the branch chosen in the UI (or default branch)
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ steps.ctx.outputs.tag || github.ref }}
fetch-depth: 0
filter: tree:0

- uses: pnpm/action-setup@v4
- uses: pnpm/action-setup@v5

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: 20
node-version: 24
cache: pnpm
registry-url: https://registry.npmjs.org/

Expand Down
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.19.6
24.14.1
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.19.6
24.14.1
2 changes: 1 addition & 1 deletion apps/cms/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-bullseye-slim AS base
FROM node:24-bullseye-slim AS base

RUN apt-get update \
&& apt-get install -y --no-install-recommends \
Expand Down
12 changes: 6 additions & 6 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"@heroicons/react": "2.2.0",
"@hono/node-server": "^1.13.7",
"@icons-pack/react-simple-icons": "^12.7.0",
"@infisical/sdk": "^4.0.6",
"@infisical/sdk": "^5.0.0",
"@payloadcms/richtext-lexical": "~3.69.0",
"@radix-ui/react-aspect-ratio": "^1.1.8",
"@radix-ui/react-checkbox": "^1.1.4",
Expand All @@ -32,9 +32,9 @@
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"hono": "^4.6.10",
"isbot": "^4.4.0",
"jsonc-eslint-parser": "2.4.2",
"lucide-react": "^0.562.0",
"isbot": "^5.0.0",
"jsonc-eslint-parser": "3.1.0",
"lucide-react": "^1.0.0",
"next-themes": "^0.4.6",
"prism-react-renderer": "2.4.1",
"react": "^19.0.0",
Expand All @@ -43,10 +43,10 @@
"remix-hono": "^0.0.16",
"remix-utils": "^8.4.0",
"sonner": "^2.0.1",
"tailwind-merge": "^2.3.0",
"tailwind-merge": "^3.0.0",
"tailwindcss-animate": "^1.0.7",
"tiny-invariant": "^1.3.3",
"zod": "^3.23.8"
"zod": "^4.0.0"
},
"engines": {
"node": ">=20"
Expand Down
Loading
Loading