-
Select Topic AreaQuestion BodyKeep getting that error even though there's no reference to upload-artifact@v3 in my yaml file. My build file has worked fine for years. Just now started getting that error and nothing resolves it. Again, there's no reference to artifact@v3 in my code so it's bizarre. Any ideas? Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 5 replies
-
|
Experienced the same error and also was not using However, I was using I think this deprecation notice is relevant: https://github.com/orgs/community/discussions/142581
Upgrading |
Beta Was this translation helpful? Give feedback.
-
|
Welcome to the GitHub Community, @theprop, we're happy you're here! You are more likely to get a useful response if you are posting your question in the applicable category and are explicit about what your project entails--giving a few more details might help someone give you a nudge in the right direction. I've gone ahead and moved it for you. Good luck! |
Beta Was this translation helpful? Give feedback.
-
|
Yup, guys apparently under the hood dependency issue is popping up; not the best way to throw an error upgrade the actions/upload-pages-artifact@v2 -> actions/upload-pages-artifact@v3; and under the hood thing should align as well cheers |
Beta Was this translation helpful? Give feedback.
-
|
Great, guys. Latest updates: https://github.com/actions/download-artifact uses: actions/upload-artifact@v4
uses: actions/download-artifact@v4This 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@v3Check 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 |
Beta Was this translation helpful? Give feedback.
-
|
Try this, the problem has been solved. |
Beta Was this translation helpful? Give feedback.
Great, guys.
Latest updates: https://github.com/actions/download-artifact
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:
Check Other Dependencies: It may also be useful to update other actions (such as actions/checkout) to their latest versions: