diff --git a/.github/actions/setup-environment/action.yml b/.github/actions/setup-environment/action.yml index 77bea3b1..453e300f 100644 --- a/.github/actions/setup-environment/action.yml +++ b/.github/actions/setup-environment/action.yml @@ -4,7 +4,7 @@ inputs: node-version: description: Node version to use required: false - default: '20.x' + default: '22.x' pnpm-version: description: PNPM version to use required: false diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e3ed52b..6237fc46 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: strategy: matrix: os: [macos-latest, ubuntu-latest, windows-latest] - node-version: [20.x, 22.x] + node-version: [20.x, 22.x, 23.x] python-version: ['3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c5b355f3..e75b4e79 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: - name: Setup Environment uses: ./.github/actions/setup-environment with: - node-version: 20.x + node-version: 22.x python-version: '3.13' - name: Install dependencies run: pnpm install