Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/actions/node-bootstrap/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ inputs:
pnpm-version:
description: pnpm version to install
required: false
default: "11.12.0"
default: "11.15.1"

runs:
using: composite
steps:
- name: Setup Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@v7
with:
node-version: ${{ inputs.node-version }}

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# CI validation uses local Supabase (host.docker.internal:54321); publish uses cloud URL.
FROM node:24.18.0-alpine3.24 AS builder

RUN corepack enable && corepack prepare pnpm@11.12.0 --activate
RUN corepack enable && corepack prepare pnpm@11.15.1 --activate

WORKDIR /app

Expand All @@ -23,7 +23,7 @@ RUN --mount=type=secret,id=supabase_url \
pnpm run generate

# --- Production Stage ---
FROM nginx:1.31.2-alpine3.23-slim AS production
FROM nginx:1.31.3-alpine3.24-slim AS production

RUN rm -f /usr/share/nginx/html/index.html

Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@95gabor/cv",
"version": "3.0.1",
"private": true,
"packageManager": "pnpm@11.12.0",
"packageManager": "pnpm@11.15.1",
"scripts": {
"dev": "next dev --turbopack",
"prebuild": "tsx scripts/generate-llms-txt.mts",
Expand All @@ -29,10 +29,10 @@
},
"dependencies": {
"@radix-ui/react-slot": "^1.3.0",
"@supabase/supabase-js": "^2.110.2",
"@supabase/supabase-js": "^2.110.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.24.0",
"lucide-react": "^1.25.0",
"next": "16.2.10",
"next-intl": "^4.13.2",
"next-themes": "^0.4.6",
Expand All @@ -44,27 +44,27 @@
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@percy/cli": "1.31.14",
"@percy/playwright": "^1.1.0",
"@percy/playwright": "^1.1.1",
"@playwright/test": "^1.61.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.9",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.1",
"@tailwindcss/postcss": "^4.3.2",
"@tailwindcss/postcss": "^4.3.3",
"@types/node": "^24.13.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.5",
"eslint-config-next": "16.2.10",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"lint-staged": "^17.1.0",
"prettier": "^3.9.5",
"semantic-release": "^25.0.6",
"semantic-release": "^25.0.8",
"supabase": "^2.109.1",
"tailwindcss": "^4.3.2",
"tsx": "^4.23.0",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.1",
"typescript": "^6.0.3",
"yaml": "^2.9.0"
}
Expand Down
Loading
Loading