From 2f3421645a5058ada3d2156faaedc690dda90fcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=8A=E3=81=95=E3=82=80=E3=81=AE=E3=81=B2=E3=81=A8?= <46447427+samunohito@users.noreply.github.com> Date: Wed, 19 Nov 2025 12:34:27 +0900 Subject: [PATCH] =?UTF-8?q?fix(devcontainer):=20devcontainer=E3=81=AE?= =?UTF-8?q?=E3=83=90=E3=83=BC=E3=82=B8=E3=83=A7=E3=83=B3=E3=82=A2=E3=83=83?= =?UTF-8?q?=E3=83=97=EF=BC=8BRenovate=E3=81=A7bump=E5=87=BA=E6=9D=A5?= =?UTF-8?q?=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB=E8=A8=AD=E5=AE=9A=E3=82=92?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0=20(#16793)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix(devcontainer): devcontainerのバージョンアップ+Renovateでbump出来るように設定を追加 * Update renovate.json5 Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update renovate.json5 Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * fix matchFileNames * using trixie --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com> --- .devcontainer/Dockerfile | 2 +- renovate.json5 | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index b6ebcf6ad3..d208ad6ecf 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1 +1 @@ -FROM mcr.microsoft.com/devcontainers/javascript-node:0-18 +FROM mcr.microsoft.com/devcontainers/javascript-node:4.0.3-24-trixie diff --git a/renovate.json5 b/renovate.json5 index 0ada26d579..0b0f9e1ac9 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -106,6 +106,18 @@ '.devcontainer/**', ], }, + { + // devcontainer (Dockerfile用の設定) + groupName: '[devcontainer] Update dependencies', + matchFileNames: ['.devcontainer/Dockerfile'], + matchDepNames: ['mcr.microsoft.com/devcontainers/javascript-node'], + allowedVersions: '/-[0-9]+-trixie$/', + + // major/minor/patch: devcontainer の semver + // build: Node メジャー + // dist: Debian codename (e.g., bullseye, bookworm)(比較には使わない) + versioning: 'regex:^(?\\d+)\\.(?\\d+)\\.(?\\d+)-(?\\d+)-(?.+)$', + }, ], customManagers: [ {