Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/actions/base-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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 }}

Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading