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/check-package-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
Copy link

Choose a reason for hiding this comment

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

🧹 Nitpick (assertive)

Upgrade to checkout@v4 looks correct
Pinning to the v4 major release ensures you benefit from the latest performance improvements and bug fixes.

Consider enabling full history for version-check
The EndBug/version-check action compares changes across branches; adding fetch-depth: 0 will fetch the entire git history and make the diff reliable.

      - name: Checkout
-       uses: actions/checkout@v4
+       uses: actions/checkout@v4
+       with:
+         fetch-depth: 0
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0


- name: Setup NodeJS
uses: "actions/setup-node@v3"
Expand Down