Add dependency review job to code quality workflow#198
Conversation
There was a problem hiding this comment.
Pull request overview
This pull request adds a dependency review job to the GitHub Actions code quality workflow to automatically scan and review dependencies in pull requests for security and compliance issues.
Changes:
- Added
dependency-reviewjob to thecodequality.ymlworkflow that runs on pull requests using GitHub's dependency-review-action
|
|
This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation. |



This pull request adds a new job to the GitHub Actions workflow to automatically review dependencies on pull requests. This helps ensure that any new or updated dependencies are checked for security and compliance issues before merging.
CI/CD improvements:
.github/workflows/codequality.yml: Added adependency-reviewjob that runs on pull requests and uses theactions/dependency-review-action@v4to automatically review dependency changes.