You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When uploading/downloading 'large' files, the v4 artifact system does not work and results in ::debug::Failed to download artifact after 1 retries due to Not a valid zip file. Retrying in 5 seconds... and ::debug::response.message: Artifact download failed: Blob storage chunk did not respond in 30000ms messages.
It worked with the v3 actions.
Link to GitHub repository
No response
Workflow content
name: teston:
[push]jobs:
upload_huge_file:
runs-on: ubuntu-lateststeps:
- uses: actions/checkout@v4# create huge file, works with /dev/null, as the zip is compressed
- run: dd if=/dev/random of=huge_file bs=1M count=1024
- name: Upload huge fileuses: actions/upload-artifact@v4with:
name: huge_filepath: huge_filedownload_huge_file:
runs-on: ubuntu-latestneeds: upload_huge_filesteps:
- uses: actions/checkout@v4
- name: Download huge fileuses: actions/download-artifact@v4with:
name: huge_file
- run: ls -al
Relevant log output
too long, uploaded to here: https://pastebin.com/Pv6eS2Eq
Additional information
No response
The text was updated successfully, but these errors were encountered:
Summary:
- Switch to v3 of upload/download to get around [nektos/act issue #2371](nektos/act#2371)
- Archive build directory before upload to preserve executable file permissions because tar preserves file permissions, but actions/download-artifact@v3 does not
- In composite action, include `shell: bash` in a step iff it has `run: `
Reviewed By: enpe
Differential Revision:
D59080244
Privacy Context Container: L1191897
fbshipit-source-id: 39a0e05132ef0f10c0cd41946dbbe124b67ecaa3
Bug report info
Command used with act
Describe issue
When uploading/downloading 'large' files, the v4 artifact system does not work and results in
::debug::Failed to download artifact after 1 retries due to Not a valid zip file. Retrying in 5 seconds...
and::debug::response.message: Artifact download failed: Blob storage chunk did not respond in 30000ms
messages.It worked with the v3 actions.
Link to GitHub repository
No response
Workflow content
Relevant log output
Additional information
No response
The text was updated successfully, but these errors were encountered: