From 04c2001fb8734a6e8405875041b9fce76bb89759 Mon Sep 17 00:00:00 2001 From: rei <107461411+reiroop@users.noreply.github.com> Date: Sun, 2 Aug 2026 21:41:41 +0900 Subject: [PATCH 1/2] =?UTF-8?q?chore(=E4=BE=9D=E5=AD=98=E9=96=A2=E4=BF=82)?= =?UTF-8?q?:=20@types/node=20=E3=82=92=20dependabot=20=E3=81=AE=E8=87=AA?= =?UTF-8?q?=E5=8B=95=E6=9B=B4=E6=96=B0=E5=AF=BE=E8=B1=A1=E3=81=8B=E3=82=89?= =?UTF-8?q?=E9=99=A4=E5=A4=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit @types/node は Node.js 本体のバージョンに合わせて手動で揃える必要があるため、 dependabot による独立した自動更新を止める。 --- .github/dependabot.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9fdf673..d9aa9b4 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -15,6 +15,9 @@ updates: update-types: - minor - patch + ignore: + # @types/node は Node.js のバージョンに合わせて手動で更新するため対象外にする + - dependency-name: "@types/node" - package-ecosystem: github-actions directory: / From 2a16740a6ced268279a396734a66d409645cc2d5 Mon Sep 17 00:00:00 2001 From: rei <107461411+reiroop@users.noreply.github.com> Date: Sun, 2 Aug 2026 21:43:13 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix(=E4=BE=9D=E5=AD=98=E9=96=A2=E4=BF=82):?= =?UTF-8?q?=20@types/node=20=E3=81=AEignore=E5=AF=BE=E8=B1=A1=E3=82=92?= =?UTF-8?q?=E3=83=A1=E3=82=B8=E3=83=A3=E3=83=BC=E3=83=90=E3=83=BC=E3=82=B8?= =?UTF-8?q?=E3=83=A7=E3=83=B3=E3=81=AE=E3=81=BF=E3=81=AB=E9=99=90=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit @types/node のminor/patchはNode.js側のバージョンと対応せず型定義の 追加・修正のみのため、dependabotによる自動更新を許可する。 メジャーバージョンのみNode.js本体との整合を手動で確認する。 --- .github/dependabot.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d9aa9b4..d1b0452 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -16,8 +16,11 @@ updates: - minor - patch ignore: - # @types/node は Node.js のバージョンに合わせて手動で更新するため対象外にする + # @types/node のメジャーバージョンは Node.js のメジャーバージョンに合わせて手動で更新する + # (minor/patch は型定義の追加・修正のみで Node.js 側のバージョンとは対応しないため自動更新を許可する) - dependency-name: "@types/node" + update-types: + - "version-update:semver-major" - package-ecosystem: github-actions directory: /