Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: 'Setup Node + pnpm'
description: 'Sets up Node.js (LTS by default) with pnpm and dependency caching.'
inputs:
node-version:
description: 'Node.js version to use. Defaults to the .nvmrc value if present, otherwise 22.'
description: 'Node.js version to use. Defaults to the .node-version value if present, otherwise 24.'
required: false
default: ''
node-auth-token:
Expand Down Expand Up @@ -52,10 +52,10 @@ runs:
run: |
if [ -n "${{ inputs.node-version }}" ]; then
echo "version=${{ inputs.node-version }}" >> "$GITHUB_OUTPUT"
elif [ -f .nvmrc ]; then
echo "version=$(cat .nvmrc)" >> "$GITHUB_OUTPUT"
elif [ -f .node-version ]; then
echo "version=$(cat .node-version)" >> "$GITHUB_OUTPUT"
else
echo "version=22" >> "$GITHUB_OUTPUT"
echo "version=24" >> "$GITHUB_OUTPUT"
fi

- name: Setup Node.js
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_call:
inputs:
node-version:
description: 'Node.js version. Defaults to .nvmrc / 22.'
description: 'Node.js version. Defaults to .node-version / 24.'
required: false
type: string
default: ''
Expand Down
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
24.15.0
1 change: 0 additions & 1 deletion .nvmrc

This file was deleted.

2 changes: 1 addition & 1 deletion CONSUMING.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
packages: read
uses: kin0992/dev-toolkit/.github/workflows/static-analysis.yml@main
with:
node-version: '22'
node-version: '24'
working-directory: '.'
```

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Platform Engineering toolkit: reusable GitHub Actions, AI Skills, and shared Typ

## Stack

Node.js LTS · TypeScript · pnpm workspaces · Turbo · OXC (`oxfmt`, `oxlint`) · Vitest · Pulumi (TS) · Changesets · GitHub Actions · GitHub Packages registry
Node.js 24 · TypeScript · pnpm workspaces · Turbo · OXC (`oxfmt`, `oxlint`) · Vitest · Pulumi (TS) · Changesets · GitHub Actions · GitHub Packages registry

## How to consume from another project

Expand Down
4 changes: 2 additions & 2 deletions infra/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
},
"devDependencies": {
"@kin0992/oxc-config": "workspace:*",
"@types/node": "^22.10.2",
"@types/node": "catalog:core",
"oxfmt": "catalog:core",
"oxlint": "catalog:core",
"typescript": "^5.7.2"
"typescript": "catalog:core"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"typescript": "catalog:core"
},
"engines": {
"node": ">=22.0.0",
"node": ">=24.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@10.33.2+sha512.a90faf6feeab71ad6c6e57f94e0fe1a12f5dcc22cd754db40ae9593eb6a3e0b6b12e3540218bb37ae083404b1f2ce6db2a4121e979829b4aff94b99f49da1cf8"
Expand Down
59 changes: 31 additions & 28 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ packages:

catalogs:
core:
'@types/node': ^24.12.2
typescript: ^5.9.3
oxfmt: ^0.47.0
oxlint: ^1.62.0
Loading