From fb91cedb7371740a7116e72a26940c5834de5f39 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Wed, 26 Nov 2025 11:56:02 +0100 Subject: [PATCH] Revert "Revert "Update default Node.js version to 24.x" (#262)" This reverts commit f1835ba2af2da2c7e0e9c3c13861c9aa18140766. --- .github/actions/base-setup/action.yml | 4 ++-- .github/workflows/tests.yml | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/actions/base-setup/action.yml b/.github/actions/base-setup/action.yml index 8f0bd29..4d54e2c 100644 --- a/.github/actions/base-setup/action.yml +++ b/.github/actions/base-setup/action.yml @@ -16,7 +16,7 @@ runs: run: | set -eux PYTHON_VERSION="${{ inputs.python_version || matrix.python-version }}" - NODE_VERSION=${{ inputs.node_version || matrix.node-version || '20.x' }} + NODE_VERSION=${{ inputs.node_version || matrix.node-version || '24.x' }} DEPENDENCY_TYPE=${{ inputs.dependency_type }} # Handle default python value based on dependency type. @@ -62,7 +62,7 @@ runs: ${{ env.CACHE_PREFIX }}-pip-${{ env.PYTHON_VERSION }} - name: Install node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: ${{ env.NODE_VERSION }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 19492a1..d77f71c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -24,8 +24,6 @@ jobs: uses: actions/checkout@v4 - name: Base Setup uses: ./.github/actions/base-setup - with: - node_version: 18.0 - name: Check Hatch Version run: hatch --version