-
Notifications
You must be signed in to change notification settings - Fork 39
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
revert: replace actions/upload-artifact@v3 with actions/upload-artifact@v4 #2388
Conversation
…tifact@v…" This reverts commit db86d33.
WalkthroughThe pull request includes updates to two GitHub Actions workflow files: Changes
Possibly related PRs
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (2)
🧰 Additional context used🪛 actionlint (1.7.4).github/workflows/release.yml285-285: the runner of "actions/upload-artifact@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue (action) .github/workflows/release-docker-image.yml83-83: the runner of "actions/upload-artifact@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue (action) 🔇 Additional comments (3).github/workflows/release-docker-image.yml (1)Line range hint The downgrade from 🧰 Tools🪛 actionlint (1.7.4)83-83: the runner of "actions/upload-artifact@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue (action) .github/workflows/release.yml (2)Line range hint The downgrade from 🧰 Tools🪛 actionlint (1.7.4)282-282: shellcheck reported issue in this script: SC2086:info:1:1: Double quote to prevent globbing and word splitting (shellcheck) 285-285: the runner of "actions/upload-artifact@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue (action) Line range hint The new 🧰 Tools🪛 actionlint (1.7.4)282-282: shellcheck reported issue in this script: SC2086:info:1:1: Double quote to prevent globbing and word splitting (shellcheck) 285-285: the runner of "actions/upload-artifact@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue (action) Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Closed in favor of #2389 |
Reverts #2359
In #2359, we changed to upload-artifacts v4 without updating the logic to address the following breaking change:
Breaking Changes
Uploading to the same named Artifact multiple times.
Due to how Artifacts are created in this new version, it is no longer possible to upload to the same named Artifact multiple times. You must either split the uploads into multiple Artifacts with different names, or only upload once. Otherwise you will encounter an error.
Summary by CodeRabbit
New Features
only_drive
for specifying Drive image builds.Bug Fixes
Chores
upload-artifact
anddownload-artifact
fromv4
tov3
in multiple workflows.