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 is going on?
Also, Dependabot doesn't seem to understand my configuration file as it wants to create a new one. I assume it might be because of this?
Here is my .github/dependabot.yml
file:
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "pnpm"
directory: "/"
schedule:
interval: "weekly"
pnpm
should be a valid value in the schema as the documentation says.