Skip to content

Commit c54b871

Browse files
authored
Update default Node.js version to 24.x (#264)
1 parent 7a3e704 commit c54b871

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/actions/base-setup/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ runs:
1616
run: |
1717
set -eux
1818
PYTHON_VERSION="${{ inputs.python_version || matrix.python-version }}"
19-
NODE_VERSION=${{ inputs.node_version || matrix.node-version || '20.x' }}
19+
NODE_VERSION=${{ inputs.node_version || matrix.node-version || '24.x' }}
2020
DEPENDENCY_TYPE=${{ inputs.dependency_type }}
2121
2222
# Handle default python value based on dependency type.
@@ -62,7 +62,7 @@ runs:
6262
${{ env.CACHE_PREFIX }}-pip-${{ env.PYTHON_VERSION }}
6363
6464
- name: Install node
65-
uses: actions/setup-node@v4
65+
uses: actions/setup-node@v6
6666
with:
6767
node-version: ${{ env.NODE_VERSION }}
6868

.github/workflows/tests.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ jobs:
2424
uses: actions/checkout@v4
2525
- name: Base Setup
2626
uses: ./.github/actions/base-setup
27-
with:
28-
node_version: 18.0
2927
- name: Check Hatch Version
3028
run: hatch --version
3129

0 commit comments

Comments
 (0)