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
1 change: 0 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ jobs:

- uses: actions/setup-node@v6
with:

Copilot AI Jan 28, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

By removing node-version: 'latest' here, this actions/setup-node@v6 step no longer supplies a node-version or node-version-file, so the action will fail with a missing required input. To keep builds deterministic and functional, specify a pinned Node version (for example an LTS range like 22.x) or use node-version-file referencing your repo's Node version file instead of omitting the version entirely.

Suggested change
with:
with:
node-version: '22.x'

Copilot uses AI. Check for mistakes.
node-version: 'latest'
cache: 'npm'

- name: dependencies
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ jobs:

- uses: actions/setup-node@v6
with:

Copilot AI Jan 28, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removing the node-version: 'latest' line here leaves actions/setup-node@v6 without any node-version or node-version-file input, which will cause the action to fail with "Input required and not supplied: node-version" at runtime. To keep the workflow working while avoiding latest, configure a specific Node version (e.g., an LTS range like 22.x) or point node-version-file at your .nvmrc/.node-version file instead of removing the version entirely.

Suggested change
with:
with:
node-version: '22.x'

Copilot uses AI. Check for mistakes.
node-version: 'latest'
cache: 'npm'

- name: version
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ on:
- pull_request
- push

env:
PYTHON_LATEST_VERSION: '3.14'

jobs:
pytest:
name: Pytest
Expand Down