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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [22.x, 20.x]
node-version: [24.x, 22.x]
cds-version: [9, 8]
steps:
- uses: actions/checkout@v2
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Best Practices: actions/checkout and actions/setup-node are pinned to outdated v2 tags

Both actions/checkout@v2 and actions/setup-node@v2 are significantly outdated. The current major versions are v4 for both actions. Using stale action versions can expose the workflow to known bugs and missing security fixes, and v2 of these actions predates Node.js 20+ compatibility improvements.

Consider upgrading to the latest major versions:

Suggested change
- uses: actions/checkout@v2
- uses: actions/checkout@v4

Double-check suggestion before committing. Edit this comment for amendments.


Please provide feedback on the review comment by checking the appropriate box:

  • 🌟 Awesome comment, a human might have missed that.
  • ✅ Helpful comment
  • 🤷 Neutral
  • ❌ This comment is not helpful

Expand Down
Loading