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/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:

- name: Upload package distribution files
if: matrix.task.name == 'Build'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Bug: Artifact Action Version Mismatch

The workflow now has a version mismatch: artifacts are uploaded using actions/upload-artifact@v5 (line 101), but they are downloaded using actions/download-artifact@v4 (line 182). While v5 and v4 may be compatible due to the artifact format being unchanged, this version mismatch creates a cross-version dependency risk. The release job's download-artifact step should also be updated to v5 to maintain consistency and avoid potential compatibility issues. The commit should have updated both the upload and download artifact actions to v5.

Fix in Cursor Fix in Web

with:
name: package
path: dist
Expand Down
Loading