-
Notifications
You must be signed in to change notification settings - Fork 281
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
Fix the CI / report-coverage check by switching to corresponding actions/upload-artifact@v4 #3893
Fix the CI / report-coverage check by switching to corresponding actions/upload-artifact@v4 #3893
Conversation
Signed-off-by: Craig Perkins <[email protected]>
Signed-off-by: Craig Perkins <[email protected]>
Signed-off-by: Craig Perkins <[email protected]>
Signed-off-by: Craig Perkins <[email protected]>
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #3893 +/- ##
==========================================
- Coverage 66.58% 65.18% -1.41%
==========================================
Files 298 298
Lines 21188 21189 +1
Branches 3453 3454 +1
==========================================
- Hits 14109 13811 -298
- Misses 5363 5666 +303
+ Partials 1716 1712 -4
|
The backport to
To backport manually, run these commands in your terminal: # Navigate to the root of your repository
cd $(git rev-parse --show-toplevel)
# Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add ../.worktrees/security/backport-2.x 2.x
# Navigate to the new working tree
pushd ../.worktrees/security/backport-2.x
# Create a new branch
git switch --create backport/backport-3893-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 83723432cca6e78d23e034b5149ff72d5907fde3
# Push it to GitHub
git push --set-upstream origin backport/backport-3893-to-2.x
# Go back to the original working tree
popd
# Delete the working tree
git worktree remove ../.worktrees/security/backport-2.x Then, create a pull request where the |
Creating a manual backport |
…ons/upload-artifact@v4 (opensearch-project#3893) Signed-off-by: Craig Perkins <[email protected]> (cherry picked from commit 8372343)
…responding actions/upload-artifact@v4 (#3893) (#3895) Backport #3893 to 2.x --------- Signed-off-by: Craig Perkins <[email protected]>
…ons/upload-artifact@v4 (opensearch-project#3893) Signed-off-by: Craig Perkins <[email protected]> Signed-off-by: Prabhas Kurapati <[email protected]>
…ons/upload-artifact@v4 (opensearch-project#3893) Signed-off-by: Craig Perkins <[email protected]>
Description
This PR fixes the CI / report-coverage check by using the corresponding upload artifact package. I verified this change by creating a PR on my local fork and checked that the artifacts are uploaded to the CI summary after the build is complete.
Maintenance
Issues Resolved
Is this a backport? If so, please add backport PR # and/or commits #
Testing
[Please provide details of testing done: unit testing, integration testing and manual testing]
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.