-
Notifications
You must be signed in to change notification settings - Fork 7.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug]: analyze
workflow fails because of deprecated version of actions/upload-artifact
#7148
Comments
analyze
workflow fails because of deprecated version ofactions/upload-artifact
analyze
workflow fails because of deprecated version of actions/upload-artifact
changing from |
The error you're seeing is due to GitHub deprecating versions Here's how you can do it:
For example, if your workflow currently looks like this: - name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: my-artifact
path: path/to/artifact Change it to: - name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: my-artifact
path: path/to/artifact
After making these changes, your workflow should be able to run successfully without triggering the deprecated version error. Let me know if you need further assistance! |
GitHub deprecated versions v1 and v2 of the actions/upload-artifact action. To fix this, we update the workflow file to use the latest version (v3) of actions/upload-artifact reactjs/react.dev#7148
Summary
Analyze workflow fails:
Partially related to #5961
Should be fixed by #6651
Page
Details
No response
The text was updated successfully, but these errors were encountered: