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 @@ -18,7 +18,7 @@ jobs:
uses: actions/checkout@v3

Copilot AI Apr 24, 2026

Copy link

Choose a reason for hiding this comment

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

This workflow still uses actions/checkout@v3. To keep GitHub Actions dependencies aligned with current recommended majors (and pick up security/runtime updates), consider upgrading to actions/checkout@v4 as well.

Suggested change
uses: actions/checkout@v3
uses: actions/checkout@v4

Copilot uses AI. Check for mistakes.

- name: install node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
cache: "yarn"
node-version: "18"
Comment on lines 22 to 24

Copilot AI Apr 24, 2026

Copy link

Choose a reason for hiding this comment

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

Since this PR updates setup-node, it may be a good time to also revisit the other core actions in this workflow: actions/cache is currently on v2 (later in the file). Upgrading to the latest major (e.g., actions/cache@v4) helps keep the workflow on a supported runtime and picks up bug/security fixes.

Copilot uses AI. Check for mistakes.
Expand Down