Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/compilation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Create tar archive (keep executable bit)
run: tar -zcvf hdl-dump-${{ env.SHA }}-${{matrix.os}}.tar.gz hdl_dump

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
Copy link

Copilot AI Dec 7, 2025

Choose a reason for hiding this comment

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

Upgrading actions/upload-artifact to v4 while keeping actions/download-artifact at v3 (line 79) may cause compatibility issues. The v4 upload action has breaking changes in how artifacts are structured. Consider also upgrading actions/download-artifact to v4 to ensure compatibility, or keep both at v3 until all can be upgraded together.

Copilot uses AI. Check for mistakes.
Copy link
Member Author

Choose a reason for hiding this comment

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

with:
name: hdl-dump-${{ env.SHA }}-${{matrix.os}}
path: |
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Create tar archive
run: tar -zcvf hdl-dump-${{ env.SHA }}-windows-latest.tar.gz rel

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
Copy link

Copilot AI Dec 7, 2025

Choose a reason for hiding this comment

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

Same issue as line 32: upgrading actions/upload-artifact to v4 while keeping actions/download-artifact at v3 (line 79) may cause compatibility issues. Consider also upgrading actions/download-artifact to v4.

Copilot uses AI. Check for mistakes.
with:
name: hdl-dump-${{ env.SHA }}-windows-latest
path: |
Expand Down
Loading