Fix failing builds due to deprecated actions/upload-artifact#53
Fix failing builds due to deprecated actions/upload-artifact#53christianhelle merged 1 commit intomasterfrom
Conversation
WalkthroughGitHub Actions workflows are updated to use Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~8 minutes Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (2)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
🔇 Additional comments (2)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Pull Request Overview
This PR updates GitHub Actions workflows to use actions/upload-artifact@v4 instead of the deprecated @v3 version, addressing failing builds and ensuring compatibility with current GitHub Actions standards.
- Updated all
actions/upload-artifactreferences from v3 to v4 across workflow files - Applied changes consistently to both build and release workflows
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| .github/workflows/release.yml | Updated five instances of actions/upload-artifact from v3 to v4 for artifact publishing in release workflow |
| .github/workflows/build.yml | Updated five instances of actions/upload-artifact from v3 to v4 for artifact publishing in build workflow |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
This pull request updates the GitHub Actions workflow files to use a newer version of the
actions/upload-artifactaction. This change helps ensure compatibility with the latest features and security updates provided by GitHub Actions.Workflow maintenance:
actions/upload-artifactfrom version 3 (@v3) to version 4 (@v4) in.github/workflows/build.ymlto improve artifact publishing reliability and maintain compatibility with the latest GitHub Actions standards.actions/upload-artifactfrom version 3 (@v3) to version 4 (@v4) in.github/workflows/release.ymlfor consistent artifact publishing in the release workflow.Summary by CodeRabbit
Release Notes