From 110953ced45af5294d262a6a741ce21f37044f6d Mon Sep 17 00:00:00 2001 From: Piotr Kwiecinski <2151333+piotrkwiecinski@users.noreply.github.com> Date: Fri, 2 Jan 2026 14:41:18 +0100 Subject: [PATCH] chore: update Node.js version to 24 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update Node.js from version 22 to 24 in: - GitHub Actions CI workflow - Nix flake development and build environments 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .github/workflows/deploy.yml | 2 +- flake.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 54be7aa8..fc074556 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -16,7 +16,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: '22' + node-version: '24' cache: 'npm' - name: Install dependencies diff --git a/flake.nix b/flake.nix index 8e5b2ab1..ed11a2fa 100644 --- a/flake.nix +++ b/flake.nix @@ -34,7 +34,7 @@ nativeBuildInputs = with pkgs; [ hugo - nodejs_22 + nodejs_24 nodePackages.npm ]; @@ -68,7 +68,7 @@ devShells.default = pkgs.mkShellNoCC { nativeBuildInputs = [ pkgs.hugo - pkgs.nodejs_22 + pkgs.nodejs_24 pkgs.awscli2 ];