Skip to content

Commit 5dd6550

Browse files
CopilotAddono
andauthored
chore: configures Dependabot to skip non-LTS @types/node versions (#297)
* Initial plan * Update Dependabot config to skip non-LTS versions of @types/node Co-authored-by: Addono <15435678+Addono@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Addono <15435678+Addono@users.noreply.github.com>
1 parent a4cfae8 commit 5dd6550

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/dependabot.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ updates:
2020
- "yarn"
2121
- "dependencies"
2222
ignore:
23-
# Ignore any newer version of Node types, since we will stay on
24-
# Node 20 LTS for now
23+
# Ignore non-LTS versions of Node types (odd-numbered major versions)
24+
# LTS versions are even-numbered: 18, 20, 22, 24, 26, etc.
2525
- dependency-name: "@types/node"
26-
versions: [">=21"]
26+
update-types: ["version-update:semver-major"]
27+
versions: ["19.x", "21.x", "23.x", "25.x", "27.x", "29.x", "31.x"]

0 commit comments

Comments
 (0)