Replies: 1 comment 2 replies
-
🦗 Isn't there someone else that has this issue using Symfony Stimulus/UX bundles? Hardly believe that I would be the only one that has Dependabot setup for NPM updates on a Symfony repo using these bundles 🙁 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
For a while I've noticed that Dependabot no longer updates my dependencies in my
package.json
, and now after a bit of trial-and-error, I've found that Dependabot fails to run due to Stimulus (and other UX packages) having references to local file paths. The error in logging that dependabot shows is as follows:The following
package.json
andpackage-lock.json
are in my project.package.json
package-lock.json
My
.github/dependabot.yml
is as follows:So I think the problem is that the the Symfony Stimulus/UX packages add a section to the
package.json
that points to assets in thevendor
directory, but the Dependabot NPM updater knows nothing about thisvendor
directory as there's none.My question: does anyone have an idea how I can make Dependabot "work" again to update NPM packages?
Sidenotes:
I've already tried adding
ignore
key to the NPM section independabot.yml
It picks up these settings in the job definition when checking the logging:
But it still fails with the same error (probably tries to fetch files before trying to ignore).
Beta Was this translation helpful? Give feedback.
All reactions