Fix dependabot#38
Merged
simongdavies merged 3 commits intohyperlight-dev:mainfrom Apr 9, 2026
Merged
Conversation
Signed-off-by: Simon Davies <simongdavies@users.noreply.github.com>
Signed-off-by: Simon Davies <simongdavies@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Updates Dependabot configuration to better match the repo’s actual manifest locations and to avoid update attempts for a dependency that isn’t meant to be pulled from the registry.
Changes:
- Switch npm and cargo Dependabot entries to multi-directory scanning.
- Add
open-pull-requests-limitto each ecosystem. - Add an npm ignore rule for
@hyperlight/js-host-api.
Comments suppressed due to low confidence (1)
.github/dependabot.yml:23
- Including the repo root ("/") in the npm updater will likely still fail because the root package.json depends on "@hyperlight/js-host-api" via a local path (file:deps/js-host-api), but deps/ is gitignored (and not present in the repo checkout). Dependabot runs in a clean checkout and generally needs to resolve local file: dependencies when updating package-lock.json. Consider removing "/" from the npm directories until js-host-api is available via a resolvable source, or vendor/commit a minimal deps/js-host-api package (or switch the dependency to a git URL that Dependabot can fetch).
- package-ecosystem: "npm"
directories:
- "/"
- "/src/code-validator/guest"
schedule:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates the Dependabot to exclude hyperlight-dev/js-host-api as this is not yet published with all the changes hyperagent needs