Skip to content

Commit

Permalink
feat: add dependabot updates for actions and devcontainer
Browse files Browse the repository at this point in the history
Enable dependabot updates for github actions and devcontainers. Also,
adds gh cli to the devcontainer.
  • Loading branch information
derektamsen committed May 11, 2024
1 parent 44b46c7 commit 6fa8c9d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,8 @@
// "remoteUser": "root"

// install development dependencies for cgo
"postCreateCommand": "sudo apt update && sudo apt install --yes libcryptsetup-dev && git config --global --add safe.directory /workspaces/luks2crypt"
"postCreateCommand": "sudo apt update && sudo apt install --yes libcryptsetup-dev && git config --global --add safe.directory /workspaces/luks2crypt",
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {}
}
}
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@

version: 2
updates:
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: weekly

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"

- package-ecosystem: "gomod" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
Expand Down

0 comments on commit 6fa8c9d

Please sign in to comment.