-
Notifications
You must be signed in to change notification settings - Fork 86
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
Update workflows and deps for technical currency #2397
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: Timothy Johnson <[email protected]>
Signed-off-by: Timothy Johnson <[email protected]>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #2397 +/- ##
========================================
Coverage 91.28% 91.28%
========================================
Files 638 638
Lines 18208 18208
Branches 3822 3930 +108
========================================
Hits 16621 16621
Misses 1586 1586
Partials 1 1 ☔ View full report in Codecov by Sentry. |
62d50c5
to
ea6da7e
Compare
Signed-off-by: Timothy Johnson <[email protected]>
ea6da7e
to
27ef793
Compare
Signed-off-by: Timothy Johnson <[email protected]>
a45d2cc
to
8d1dc81
Compare
Signed-off-by: Timothy Johnson <[email protected]>
Signed-off-by: Timothy Johnson <[email protected]>
📅 Suggested merge-by date: 1/9/2025 |
@@ -37,4 +37,4 @@ jobs: | |||
|
|||
- name: Check Secrets SDK Vulnerabilities | |||
working-directory: packages/secrets/src/keyring | |||
run: cargo audit --deny warnings --ignore RUSTSEC-2024-0370 | |||
run: cargo audit --deny warnings --ignore RUSTSEC-2024-0370 --ignore RUSTSEC-2024-0429 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
RUSTSEC-2024-0429 should be safe to ignore since there is no CVE associated with it and we don't use the affected function.
If it was easy to update the glib
crate I would do so, but we're kind of locked down to a specific version for maximum compatibility with libsecret
across multiple distros.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the updates Timothy, changes LGTM
What It Does
Also removes some obsolete/redundant steps from Zowe CLI workflow.
While diagnosing daemon-related test errors I updated the way we return non-zero exit codes in the daemon client to conform to Rust best practices.
How to Test
Review Checklist
I certify that I have:
Additional Comments