-
Notifications
You must be signed in to change notification settings - Fork 326
Resolves: Add security and versioning dependency alerts #944
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
base: main
Are you sure you want to change the base?
Conversation
* add D-bot config * set proper paths to dep. sources
.github/dependabot.yml
Outdated
visual-studio-securitytools: | ||
type: nuget-feed | ||
url: https://securitytools.pkgs.visualstudio.com/_packaging/Guardian/nuget/v3/index.json | ||
# token: ${{ secrets.NUGET_PRIVATE_REG_TOKEN }} |
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.
To allow Dependabot suggest updates for dependencies in eng/common/sdl/packages.config
:
- add registry token as GitHub secret with the name
NUGET_PRIVATE_REG_TOKEN
and uncomment
Hi @aleks-ivanov, are you currently working on this item? |
/AzurePipelines run |
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.
Pull Request Overview
This PR adds a Dependabot configuration to automate dependency versioning and security alerts across multiple package ecosystems and code directories.
- Introduces a new .github/dependabot.yml file for configuring dependency update and security scanning.
- Sets up daily update schedules and integrates a custom registry for Visual Studio security tools.
Azure Pipelines successfully started running 1 pipeline(s). |
add
dependabot.yml
which automatically enables native Dependabot's dependency versioning scanner and dependency update PRs bot by declaring dependency ecosystems and sources in the project. For dependency security vulnerabilities scanner and vulnerable dependency update PRs bot, enable "Dependabot alerts" and "Dependabot security updates"should you decide that certain people on your team should take care of the PRs that Dependabot creates, use the two attributes
assignees
andreviewers
to automatically set personnel respectively.Resolves #943