Closed3
VS CodeのDev ContainerにDependabot?
![trysmr](https://res.cloudinary.com/zenn/image/fetch/s--ej4zftrw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_70/https://storage.googleapis.com/zenn-user-upload/avatar/d92a397edd.jpeg)
今回新たに既存プロジェクトをVS CodeでDev Containerに対応させたら自動でDependabotの設定が作成された(.github/dependabot.ymlが作成される)。
![trysmr](https://res.cloudinary.com/zenn/image/fetch/s--ej4zftrw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_70/https://storage.googleapis.com/zenn-user-upload/avatar/d92a397edd.jpeg)
dependabot.yml
# 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 more information:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
# https://containers.dev/guide/dependabot
version: 2
updates:
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: weekly
![trysmr](https://res.cloudinary.com/zenn/image/fetch/s--ej4zftrw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_70/https://storage.googleapis.com/zenn-user-upload/avatar/d92a397edd.jpeg)
2024年1月23日に発表された機能
これはDev Containerの機能 https://containers.dev/features を更新するためのもののようであり、今回は既存のDockerfileとcompose.ymlをDev Containerで動かしたいだけで、機能追加していないから不要なのでプロジェクトからは削除することにした。
このスクラップは5ヶ月前にクローズされました