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/all-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: "22"
node-version: "24"
cache: npm
cache-dependency-path: frontend/package-lock.json

Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,6 @@ docker-compose.yaml

# HA test environment (created by scripts/setup/start_ha_test_env.sh)
ha_test_config/

# IntellIJ
.idea
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: Build frontend
FROM node:20-slim AS frontend-builder
FROM node:24-slim AS frontend-builder

ARG COMMIT_HASH=unknown

Expand All @@ -13,7 +13,7 @@ RUN VITE_COMMIT_HASH=${COMMIT_HASH} npm run build


# Stage 2: Python runtime
FROM python:3.13-slim
FROM python:3.14-alpine

ARG COMMIT_HASH=unknown

Expand Down
Loading
Loading