Description
The Dependabot configuration in .github/dependabot.yml has a devcontainers ecosystem entry that points to a directory (/) where no devcontainer configuration files exist. This causes Dependabot runs to produce noise/errors in CI as it tries to scan for devcontainer updates that cannot be found.
Current Behavior
The devcontainers ecosystem entry in .github/dependabot.yml scans / for devcontainer configuration but no .devcontainer/ directory or devcontainer.json exists at the repository root.
Expected Behavior
The Dependabot configuration should only reference directories that contain the relevant configuration files, or the entry should be pointed to the correct location if devcontainer support exists elsewhere.
Proposed Fix
Update the directory field of the devcontainers ecosystem entry to point to the correct location where devcontainer configuration files actually exist, or remove the entry entirely if no devcontainer support is intended.
Description
The Dependabot configuration in
.github/dependabot.ymlhas adevcontainersecosystem entry that points to a directory (/) where no devcontainer configuration files exist. This causes Dependabot runs to produce noise/errors in CI as it tries to scan for devcontainer updates that cannot be found.Current Behavior
The
devcontainersecosystem entry in.github/dependabot.ymlscans/for devcontainer configuration but no.devcontainer/directory ordevcontainer.jsonexists at the repository root.Expected Behavior
The Dependabot configuration should only reference directories that contain the relevant configuration files, or the entry should be pointed to the correct location if devcontainer support exists elsewhere.
Proposed Fix
Update the
directoryfield of thedevcontainersecosystem entry to point to the correct location where devcontainer configuration files actually exist, or remove the entry entirely if no devcontainer support is intended.