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
My GitHub Actions workflow is failing with the following error:
"This request has been automatically failed because it uses a deprecated version of 'actions/upload-artifact@v1'"
However, my workflow does not use upload-artifact@v1 at all. I am using only the latest @v4 versions of all relevant actions:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/upload-pages-artifact@v4
- uses: actions/deploy-pages@v4I’ve confirmed that:
No other workflows or files reference upload-artifact@v1All actions are up to dateGitHub Pages settings are correctThis appears to be a false positive or an internal dependency issue. Please investigate whether deploy-pages@v4 or another internal action is still referencing upload-artifact@v1.Thank you!