23 questions
0
votes
0
answers
84
views
Dependabot not raising PR
We have multiple .NET repos. I have set up dependabot in one of my repos, it works as expected. But I'm facing a problem with another repo.
This repo has multiple solution files and different folder ...
4
votes
0
answers
41
views
Dependabot cannot download Python package from Azure Artifacts private PyPI after redirect to Blob Storage
I’m trying to use GitHub Dependabot with a private PyPI feed hosted in Azure Artifacts and am running into a download failure.
Dependabot successfully authenticates to the Azure Artifacts PyPI feed.
...
0
votes
1
answer
552
views
Dependabot major updates apart from minor and patch updates [closed]
I'm trying to get Dependabot to give me different PRs for major versions and minor/patch versions. Here's the config I tried:
version: 2
updates:
# GH Actions
- package-ecosystem: "github-...
0
votes
1
answer
442
views
Granting Dependabot Versions access to private Maven packages in GitHub Packages
I am trying -- and failing -- to get Dependabot Versions to scan a Java repository for stale Maven dependencies, where those dependencies are private packages hosted in GitHub Packages in the same ...
0
votes
1
answer
509
views
Get commit author in GitHub action
In my scenario dependabot creates a PR in GitHub repo, then I approve the PR and merge (with rebase) it. In my GitHub action (running on push) if I check github.actor on this merge - it will be my ...
1
vote
0
answers
343
views
Dependabot not ignoring major package versions
I have a GitHub monorepo that contains a NestJS server app and several Angular applications. I use GitHub and Dependabot, but I do not want it alerting me about major package updates to Angular or ...
0
votes
0
answers
87
views
Dependabot: "dependency_file_not_found" error while analyzing dotnet8-ios project
I get the following error when dependabot tries to restore nugets for a dotnet8/ios17 MAUI project:
updater | 2025/03/11 16:30:47 INFO <job_978645085> Discovery JSON path for workspace path [/...
3
votes
1
answer
350
views
Dependabot vendor configuration for `gomod` package-ecosystem
I am referring the optional references that I can specify in my dependabot.yaml file from Optional reference for dependabot
As per the documentation, it is said that I can enable vendor for package-...
1
vote
0
answers
124
views
Common allow-list for audit-ci, trivy and Dependabot
I have a Node.js application deployed as Docker container. When it comes to checking for known vulnerabilities, that happens at three places:
In a pre-merge check via a wrapper around npm audit ...
2
votes
0
answers
135
views
How to verify a Dependabot-suggested "Alert Workaround" was successful?
How do you proceed if the Dependabot is not able to create a PR for an alert but just outlines a "Workaround".
I did what the workaround suggested, merged my changes and was expecting the ...
0
votes
1
answer
892
views
How to Solve on Dependabot: Requirements to unlock update_not_possible
I am trying to implement dependabot on my Organization AZureDevOps Pipeline. We have multi repos. I am Using a script ps1 to distribute for all the repos the Github/dependabot.yaml file and the ...
2
votes
0
answers
1k
views
How to instruct Dependabot to ignore pre-releases or release candidate versions of a dependency?
I'm trying to set up Dependabot to keep our project Golang version up to date, but recently we received a PR from it to update our Golang version to a release candidate version (which is unwanted).
...
4
votes
0
answers
2k
views
NodeJS Dependabot alert "ws affected by a DoS when handling a request with many HTTP headers" conflicts: react-scripts, ws and jsdom
I have the following Dependabot alert
Title: ws affected by a DoS when handling a request with many HTTP headers
Desciption: Dependabot cannot update ws to a non-vulnerable version
The latest possible ...
0
votes
1
answer
525
views
Workflow that sends Dependabot PR links to Slack only works manually
I've made a pretty basic workflow that is supposed to post a message with a link to the PR whenever Dependabot creates a new vulnerability/dependency update PR (and then update the original message ...
2
votes
0
answers
235
views
GitHub Dependabot not finding all instances of package upgrades in .NET solution
Dependabot will not detect all instances of a package reference upgrade in my project structure.
My 4 Test projects in the structure below all use XUnit. Dependabot has detected a package upgrade from ...
1
vote
0
answers
398
views
How to allow dependabot to authenticate on Magento registry?
I configured Dependabot on my Github repository but it can't authenticate on repo.magento.com.
I've configured the .github/dependabot.yml file like this:
version: 2
registries:
adobe:
type: ...
0
votes
1
answer
329
views
Providing Dependabot with a list of dependencies
Is there any way of providing dependabot with a list of dependencies to check? Either by injecting the list or providing a custom package manager for it to use?
0
votes
1
answer
1k
views
Trigger Dependabot when have PR to "develop"
In my project I used Dependabot to scan our packages, I configured dependabot.yml file to scan on a schedule like this:
version: 2
updates:
# Enable version updates for npm
- package-ecosystem: &...
1
vote
1
answer
330
views
Why does dependabot PR does not show any release notes nor commits?
we have a public gradle plugin, which we release new versions, eg:
https://github.com/europace/docker-publish-gradle-plugin/releases/tag/v2.0.4
https://plugins.gradle.org/plugin/de.europace.docker-...
1
vote
1
answer
165
views
How can you make dependabot ignore unstable nginx releases (odd verison numbers)?
ngingx has a weird versioning schema:
mainline: Mainline is the active development branch where the latest features and bug fixes get added. It is denoted by an odd number in the second part of the ...
1
vote
1
answer
1k
views
Why does Dependabot always have merge conflicts with lock file (pnpm-lock.yaml)?
I have a monorepo which I manage with turborepo. I use Dependabot on GitHub to manage dependencies.
As far as I can tell, the Dependabot pull requests always have merge conflicts for the lock file (in ...
1
vote
1
answer
956
views
Contradiction between doc and schema for Dependabot with pnpm
When configuring Dependabot to use pnpm as package ecosystem, the documentation states that it is currently supported. Though, I get an error in my editor because it does not exist in the schema. What ...
0
votes
1
answer
2k
views
How to ignore all patch versions in Dependabot
Most packages follow semantic versioning to define major.minor.patch versions.
I would like to configure Dependabot to exclude all patch versions and not create PRs.
From the docs it's not completely ...