Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
node-version: 'lts/*'
cache: 'npm'
Comment on lines 12 to 16

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 | Confidence: High

The PR updates actions/setup-node from v4 to v7 uniformly across both .github/workflows/codecov.yml and .github/workflows/test.yml. The related context confirms these are the only two usages in the repository, so no other workflow is left behind. Although the v5 release introduced a breaking change requiring GitHub Actions runner version v2.327.1+ (due to Node 24), the CI pipeline runs on ubuntu-latest (which meets this requirement) and all checks passed—including the actual tests and codecov jobs. Furthermore, the explicit cache: 'npm' parameter overrides the automatic caching introduced in v5, preventing any behavioral shift. This is a safe, routine dependency bump with no observable risk or ripple effect.

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
node-version: 'lts/*'
cache: 'npm'
Expand Down
Loading