Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
steps:
- uses: actions/checkout@v4

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

Choose a reason for hiding this comment

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

The workflow is being updated to use actions/setup-node@v6, but the build action at .github/actions/build/action.yml:15 still uses actions/setup-node@v3. This creates version inconsistency across the CI pipeline. Consider updating the build action to v6 as well for consistency and to benefit from the latest features.

with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
Expand All @@ -72,7 +72,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
Expand All @@ -93,7 +93,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
Expand All @@ -114,7 +114,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
Expand Down
Loading