Great, guys.

Latest updates: https://github.com/actions/download-artifact

uses: actions/upload-artifact@v4
uses: actions/download-artifact@v4

This will solve the problem.

Update Dependencies: Ensure all the actions you're using are up-to-date. Specifically, you might want to check if you're using any action like actions/upload-pages-artifact, and update it to v3. Here’s how you can update:

uses: actions/upload-pages-artifact@v3

Check Other Dependencies: It may also be useful to update other actions (such as actions/checkout) to their latest versions:

uses: actions/checkout@v4
uses: actions/setup-node@v3
🌐
GitHub
github.blog › home › changelogs › deprecation notice: v3 of the artifact actions
Deprecation notice: v3 of the artifact actions - GitHub Changelog
April 30, 2025 - Starting January 30th, 2025, GitHub Actions customers will no longer be able to use v3 of actions/upload-artifact or actions/download-artifact. Customers should update workflows to begin using v4 of the artifact actions as soon as possible.
Blog
Updates, ideas, and inspiration from GitHub to help developers build and design software.
Changelog
Your source for the latest features, improvements, and fixes across GitHub products, all in one place.
Sunsetting Atom
We are archiving Atom and all projects under the Atom organization for an official sunset on December 15, 2022.
Include diagrams in your Markdown files with Mermaid
Mermaid is a JavaScript based diagramming and charting tool that takes Markdown-inspired text definitions and creates diagrams dynamically in the browser.
🌐
Earthly
earthly.dev › blog › github-action-artifacts
Uploading and Downloading Artifacts with GitHub Actions - Earthly Blog
October 6, 2023 - The job starts by using the actions/download-artifact@v3 action to download the artifact named Build (specified by the name input argument) at the location build (specified by the path input argument).
Discussions

How to download an artifact from another workflow? - Actions - Gitea
Unfortunately, I faced with a problem: actions/download-artifact@v4 doesn’t work with error: upload-artifact@v4+ and download-artifact@v4+ are not currently supported on GHES.. actions/download-artifact@v3 doesn’t work with error: ::error::List Artifacts failed: Artifact service responded ... More on forum.gitea.com
🌐 forum.gitea.com
0
January 21, 2025
github actions - Download some of the artifacts files - Stack Overflow
I have the below github action snippet to upload files to the artifacts in a job. - name: Dist Packages Output artifacts uses: actions/upload-artifact@v3 with: name: More on stackoverflow.com
🌐 stackoverflow.com
Unable to find any artifacts for the associated workflow - github actions - Stack Overflow
You're uploading with v4 and trying to download with v3... ... The error message isn't clear. But you need to update the actions/download-artifact to use the same version than the actions/upload-artifact: both using @v3 or @v4 More on stackoverflow.com
🌐 stackoverflow.com
Download Github Actions Artifacts
I’m trying to build the bin files using Github Actions and attache them to a release. The building works fine now. Next up downloading the artifacts… I get this output: RAM: [=== ] 31.1% (used 101928 bytes from 327680 bytes) Flash: [========= ] 85.9% (used 1238530 bytes from 1441792 bytes) ... More on community.platformio.org
🌐 community.platformio.org
1
0
February 15, 2023
🌐
Gitea
forum.gitea.com › actions
How to download an artifact from another workflow? - Actions - Gitea
January 21, 2025 - Hello! I have a workflow that upload artifacts (via actions/upload-artifact@v3 action). I need to download one file from these artifacts in another workflow. Unfortunately, I faced with a problem: actions/download-artifact@v4 doesn’t work with error: upload-artifact@v4+ and download-artifact@v4+ are not currently supported on GHES.. actions/download-artifact@v3 doesn’t work with error: ::error::List Artifacts failed: Artifact service responded with 404 christopherhx/gitea-download-artifact@...
🌐
GitHub
github.com › actions › download-artifact › releases
Releases · actions/download-artifact
The previous v3.0.2 ran on Node.js 16, which has reached end-of-life. Now this action will run on Node.js 20. ... There was an error while loading. Please reload this page. ... There was an error while loading. Please reload this page. ... actions/download-artifact@v3.1.0 runs on Node.js 24 (runs.using: node24) and requires a minimum Actions Runner version of 2.327.1.
Author   actions
🌐
GitHub
github.blog › home › news & insights › product › get started with v4 of github actions artifacts
Get started with v4 of GitHub Actions Artifacts - The GitHub Blog
February 12, 2024 - From numerous artificial and real world tests we’ve seen over 10x improvement in upload and download operations from these changes. ... name: Artifacts Comparison on: workflow_dispatch: jobs: node-modules: runs-on: ubuntu-latest steps: - uses: actions/setup-node@v4 - run: | npm i react react-dom react-script create-react-app webpack - uses: actions/upload-artifact@v4 name: "Upload Node Modules - v4" with: name: node_modules-v4 path: node_modules - uses: actions/upload-artifact@v3 name: "Upload Node Modules - v3" with: name: node_modules-v3 path: node_modules - uses: actions/download-artifact
🌐
GitHub
github.com › actions › upload-artifact
GitHub - actions/upload-artifact · GitHub
URL to download an Artifact. Can be used in many scenarios such as linking to artifacts in issues or pull requests. Users must be logged-in in order for this URL to work. This URL is valid as long as the artifact has not expired or the artifact, ...
Starred by 4K users
Forked by 1K users
Languages   TypeScript 97.0% | JavaScript 3.0%
Find elsewhere
🌐
ShadyNagy
shadynagy.com › dotnet
Upgrading GitHub Actions Artifacts from V3 to V4 A Comprehensive Guide | Shady Nagy
January 4, 2024 - 1- Update Artifact Actions: Replace actions/upload-artifact@v3 and actions/download-artifact@v3 with actions/upload-artifact@v4 and actions/download-artifact@v4 in your workflows. 2- Unique Artifact Names: Version 4 requires unique artifact names within a workflow run.
🌐
Orchestra
getorchestra.io › guides › github-actions-download-an-artifact
Github actions: Download an artifact | Orchestra
February 2, 2026 - steps: - name: Download Artifact uses: actions/download-artifact@v3 with: name: my-artifact path: ./artifacts
🌐
PlatformIO Community
community.platformio.org › integration
Download Github Actions Artifacts - Integration - PlatformIO Community
February 15, 2023 - I’m trying to build the bin files using Github Actions and attache them to a release. The building works fine now. Next up downloading the artifacts… I get this output: RAM: [=== ] 31.1% (used 101928 bytes from 327680 bytes) Flash: [========= ] 85.9% (used 1238530 bytes from 1441792 bytes) Building .pio/build/MCU4M-PROD/firmware.bin esptool.py v3.1 Merged 1 ELF section ======================== [SUCCESS] Took 106.34 seconds ======================== Environment Status Duration --...
🌐
GitHub
github.blog › home › changelogs › deprecation notice: github pages actions to require artifacts actions v4 on github.com
Deprecation notice: GitHub Pages actions to require artifacts actions v4 on GitHub.com - GitHub Changelog
April 30, 2025 - On January 30, 2025, the actions/upload-artifact and actions/download-artifact actions will be deprecated and no longer supported. These actions are being replaced with v4 versions, offering improved performance and new features.
🌐
npm
npmjs.com › package › @actions › artifact
actions/artifact
March 18, 2025 - Artifacts can now be downloaded and deleted from the UI before the entire workflow run finishes. The contents of an Artifact are uploaded together into an immutable archive. They cannot be altered by subsequent jobs.
      » npm install @actions/artifact
    
Published   Jan 30, 2026
Version   6.1.0
🌐
GitHub
github.com › actions › download-artifact
GitHub - actions/download-artifact · GitHub
download-artifact@v4+ is not currently supported on GitHub Enterprise Server (GHES) yet. If you are on GHES, you must use v3 (Node 16) or v3-node20 (Node 20). - uses: actions/download-artifact@v8 with: # Name of the artifact to download. # If unspecified, all artifacts for the run are downloaded.
Starred by 1.8K users
Forked by 695 users
Languages   TypeScript 94.1% | JavaScript 5.9%
🌐
GitHub
github.blog › home › changelogs › github actions – artifacts v4 is now generally available
GitHub Actions - Artifacts v4 is now Generally Available - GitHub Changelog
March 22, 2025 - Artifacts should be uploaded separately and then downloaded into a single directory using the two new inputs, pattern and merge-multiple, available in download-artifact@v4. These objects can then be re-uploaded as a single artifact. A single job can upload a maximum of 500 artifacts. Customers will still be able to use v1 – v3 of the artifact actions.
🌐
CICube
cicube.io › home › workflow hub › how to download artifacts in github actions?
How to Download Artifacts in GitHub Actions? - Workflow Hub - CI Cube
May 15, 2024 - In scenarios where multiple artifacts ... GitHub Actions provides a straightforward method to handle this by using the @actions/download-artifact action....
🌐
GitHub
github.com › actions › upload-artifact › issues › 635
Deprecation notice: v3 of the artifact actions · Issue #635 · actions/upload-artifact
October 17, 2024 - Starting January 30th, 2025, GitHub Actions customers will no longer be able to use v3 of actions/upload-artifact or actions/download-artifact. Customers should update workflows to begin using v4 of the artifact actions as soon as possib...
Author   yacaovsnc