Skip to content

Commit

Permalink
Dependabot for all package types
Browse files Browse the repository at this point in the history
Enable dependabot for GitHub Actions, NPM, and Docker.

Also fix a small json error in the vscode settings.
  • Loading branch information
vidplace7 committed Sep 6, 2024
1 parent 5470e14 commit 3ca636f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
19 changes: 17 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
version: 2
updates:
- package-ecosystem: "pip" # See documentation for possible values
directory: "/" # Location of package manifests
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"

- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"

- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"

- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "daily"
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
},
"eslint.nodePath": "frontend/.yarn/sdks",
"typescript.tsdk": "frontend/.yarn/sdks/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true
"typescript.enablePromptUseWorkspaceTsdk": true,
"python.analysis.typeCheckingMode": "basic"
}

0 comments on commit 3ca636f

Please sign in to comment.