-
Notifications
You must be signed in to change notification settings - Fork 11
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
Add support for skipping Dependency-Check Yarn analysis #145
Labels
5 - Released
The issue has been resolved, and released to the public for consumption
Feature
Issues that introduce new functionality to the project, instead of updating existing functionality
Milestone
Comments
Windos
changed the title
Add support to skip Dependency-Check Yarn analysis
Add support for skipping Dependency-Check Yarn analysis
Apr 19, 2024
Windos
added a commit
to Windos/Chocolatey.Cake.Recipe
that referenced
this issue
Apr 19, 2024
During the Dependency-Check task, the Yarn Audit analysis can be triggered even when it is not needed. This results in the task, and build, failing. By adding a new parameter, ShouldRunDependencyCheckYarnAnalysis, the Yarn Audit analysis can be explicitly disabled when required. This new parameter defaults to `true`. This change should be revisited when Cake.DependencyCheck and DependencyCheckTool are updated.
10 tasks
Windos
added a commit
to Windos/Chocolatey.Cake.Recipe
that referenced
this issue
Apr 22, 2024
During the Dependency-Check task, the Yarn Audit analysis can be triggered even when it is not needed. This results in the task, and build, failing. By adding a new tool setting, DependencyCheckDisableYarnAudit, the Yarn Audit analysis can be explicitly disabled when required. This new parameter defaults to `false`. This change should be revisited when Cake.DependencyCheck and DependencyCheckTool are updated.
Windos
added a commit
to Windos/Chocolatey.Cake.Recipe
that referenced
this issue
Apr 23, 2024
During the Dependency-Check task, the Yarn Audit analysis can be triggered even when it is not needed. This results in the task, and build, failing. By adding a new tool setting, DependencyCheckDisableYarnAudit, the Yarn Audit analysis can be explicitly disabled when required. This new parameter defaults to `false`. This change should be revisited when Cake.DependencyCheck and DependencyCheckTool are updated.
gep13
added
Feature
Issues that introduce new functionality to the project, instead of updating existing functionality
3 - Review
Code has been added, and is available for review as a pull request
labels
Apr 26, 2024
gep13
added a commit
that referenced
this issue
Apr 26, 2024
…analysis (#145) Enable skipping of Yarn analysis
gep13
added
4 - Done
Code has been added to the repository, and has been reviewed by a team member
and removed
3 - Review
Code has been added, and is available for review as a pull request
labels
Apr 26, 2024
gep13
added a commit
that referenced
this issue
Apr 26, 2024
* release/0.27.0: (#145) Enable skipping of Yarn analysis (maint) synced local '.templates/' with remote '.github/GitReleaseManager/.templates/' (maint) Remove unnecessary comma from output (build) Switch to deleting old labels (maint) created local '.github/workflows/label-sync.yml' from remote '.github/workflows/label-sync.yml'
gep13
added
5 - Released
The issue has been resolved, and released to the public for consumption
and removed
4 - Done
Code has been added to the repository, and has been reviewed by a team member
labels
Apr 26, 2024
🎉 This issue has been resolved in version 0.27.0 🎉 The release is available on: Your GitReleaseManager bot 📦 🚀 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
5 - Released
The issue has been resolved, and released to the public for consumption
Feature
Issues that introduce new functionality to the project, instead of updating existing functionality
Checklist
Is Your Feature Request Related To A Problem? Please describe.
Dependency-Check occasionally triggers Yarn analysis when it isn't needed and results in the
Dependency-Check
failing.Describe The Solution. Why is it needed?
Based on setting a relevant parameter (
--dependencyCheckDisableYarnAudit=true
), inject the switch--disableYarnAudit
into thedependency-check.bat
file allowing the Yarn analysis to get toggled off when needed.Additional Context
The Dependency-Check Cake addin is currently out of date and does not expose the ability the skip Yarn analysis via the DependencyCheckSettings.
Related Issues
N/A
The text was updated successfully, but these errors were encountered: