Skip to content
Merged
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/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Install the cli
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2
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 Consider upgrading to actions/checkout@v4

The pinned SHA ee0669bd1cc54295c223e0bb666b733df41de1c5 is confirmed correct for v2, but actions/checkout@v2 is significantly outdated — the current stable release is v4. Since this PR is already updating the reference for security pinning, it would be a good opportunity to also upgrade to the latest version to benefit from bug fixes and Node.js 20 support (v2 uses the deprecated Node.js 16 runner).

Suggested change
uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- name: Install CLI
uses: ./
id: install
Expand Down
Loading