Replies: 5 comments 2 replies
-
I’m seeing the error Missing download info for actions/upload-artifact@v3 when trying to upload artifacts in multiple repositories (both private and public). I’ve checked that all actions are allowed in repo settings, my workflow is valid, and I’ve tested on both Ubuntu and Windows runners. I want to confirm whether this is an account/back-end issue or something else I’m missing. What GitHub Actions topic or product is this about? |
Beta Was this translation helpful? Give feedback.
-
Oof. Seeing this in a few threads, and not any answers :( |
Beta Was this translation helpful? Give feedback.
-
You all mention you are using v3. I'm using |
Beta Was this translation helpful? Give feedback.
-
This error usually happens when GitHub is experiencing an outage or there's a temporary issue with the Actions service or marketplace metadata. Retry after some time; this is often a transient issue. |
Beta Was this translation helpful? Give feedback.
-
🕒 Discussion Activity Reminder 🕒 This Discussion has been labeled as dormant by an automated system for having no activity in the last 60 days. Please consider one the following actions: 1️⃣ Close as Out of Date: If the topic is no longer relevant, close the Discussion as 2️⃣ Provide More Information: Share additional details or context — or let the community know if you've found a solution on your own. 3️⃣ Mark a Reply as Answer: If your question has been answered by a reply, mark the most helpful reply as the solution. Note: This dormant notification will only apply to Discussions with the Thank you for helping bring this Discussion to a resolution! 💬 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Why are you starting this discussion?
Question
What GitHub Actions topic or product is this about?
Misc
Discussion Details
Subject: Unable to use actions/upload-artifact@v3 — “Missing download info” error
Hi GitHub Support,
I’m encountering the following error in GitHub Actions:
typescript
Copy
Edit
Error: Missing download info for actions/upload-artifact@v3
This happens in multiple repositories, both private and public. I’ve confirmed that:
All actions are allowed under repository settings
The workflow is minimal and valid (example below)
I’ve tested on ubuntu-latest and windows-latest
My workflow is triggered on push to the default master branch
Here's the example workflow:
yaml
Copy
Edit
name: Test Upload Artifact
on:
push:
branches: [ master ]
jobs:
test-upload:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Upload dummy artifact
uses: actions/upload-artifact@v3
with:
name: dummy
path: README.md
Please let me know if there’s something wrong with my account or a backend issue affecting this.
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions