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
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '24.14.0'
node-version: '24.15.0'
cache: 'pnpm'

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '24.14.0'
node-version: '24.15.0'
cache: 'pnpm'

- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build stage
FROM node:24.14.0-alpine AS builder
FROM node:24.15.0-alpine AS builder

# Enable pnpm
ENV PNPM_HOME="/pnpm"
Expand All @@ -24,7 +24,7 @@ RUN pnpm run build
RUN pnpm prune --prod

# Production stage
FROM node:24.14.0-alpine AS runner
FROM node:24.15.0-alpine AS runner

# Install dumb-init for signal handling, tzdata for timezone support, and fonts for canvas rendering
RUN apk add --no-cache \
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"vitest-mock-extended": "^3.1.0"
},
"engines": {
"node": ">=24.14.0",
"node": ">=24.15.0",
"npm": ">=11.12.0"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
Expand Down
Loading