Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
time: "03:00"
- package-ecosystem: "cargo"
directories:
Comment on lines +7 to +14
Copy link

Copilot AI Apr 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are trailing spaces after the updates: and directories: keys. YAML will still parse, but trimming avoids noise in future diffs and satisfies whitespace-focused linters/editors.

Suggested change
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
time: "03:00"
- package-ecosystem: "cargo"
directories:
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
time: "03:00"
- package-ecosystem: "cargo"
directories:

Copilot uses AI. Check for mistakes.
- "/"
Comment on lines +14 to +15
Copy link

Copilot AI Apr 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Cargo entry uses directories: (plural) while other entries use directory:. Dependabot’s v2 config uses directory per update; if you need to cover multiple Cargo workspaces, add multiple - package-ecosystem: cargo entries (one per workspace root) instead of directories to avoid the key being ignored / config validation failing.

Suggested change
directories:
- "/"
directory: "/"

Copilot uses AI. Check for mistakes.
schedule:
interval: "daily"
time: "03:00"
Comment on lines +14 to +18
Copy link

Copilot AI Apr 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Cargo update config points to the repo root ("/") but this repository’s Cargo workspaces live under src/code-validator/guest/ and src/sandbox/runtime/; there is no Cargo.toml at "/". Dependabot will fail to run for Cargo unless the directory is updated to the actual workspace roots (and typically each workspace root is a separate update entry).

Suggested change
directories:
- "/"
schedule:
interval: "daily"
time: "03:00"
directory: "/src/code-validator/guest"
schedule:
interval: "daily"
time: "03:00"
- package-ecosystem: "cargo"
directory: "/src/sandbox/runtime"
schedule:
interval: "daily"
time: "03:00"

Copilot uses AI. Check for mistakes.
- package-ecosystem: "npm"
directory: "/src/js-host-api"
Copy link

Copilot AI Apr 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The npm update config points to directory: "/src/js-host-api", but there is no src/js-host-api directory in this repo (the root npm manifest is at /package.json, and @hyperlight/js-host-api is referenced as a file:deps/js-host-api dependency). This directory should be updated to the actual location(s) of package.json you want Dependabot to manage (e.g. / and possibly /src/code-validator/guest).

Suggested change
directory: "/src/js-host-api"
directory: "/"

Copilot uses AI. Check for mistakes.
schedule:
interval: "daily"
time: "03:00"
Loading