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
4 changes: 2 additions & 2 deletions .github/workflows/build-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ jobs:
submodules: recursive
- name: Setup pnpm
uses: pnpm/action-setup@v5
- name: Use node 20
- name: Use node 22
uses: actions/setup-node@v6
with:
node-version: 20
node-version: 22
architecture: ${{ matrix.arch }}
cache: 'pnpm'
cache-dependency-path: pnpm-lock.yaml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-xz-updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
if: steps.check.outputs.new_version == 'true'
uses: actions/setup-node@v6
with:
node-version: 20
node-version: 22
cache: 'pnpm'

- name: Test with latest XZ version
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ jobs:
fail-fast: true # Fail fast on smoke tests to save CI minutes
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [20]
node: [22]
runtime_link: [static]
use_global_liblzma: [false]
enable_threads: [no]
Expand Down Expand Up @@ -418,7 +418,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: ['20', '22']
node: ['22', '24']
config:
- {runtime_link: 'static', use_global_liblzma: false, enable_threads: 'no'}
- {runtime_link: 'shared', use_global_liblzma: false, enable_threads: 'no'}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
node-version: '22'
cache: 'pnpm'

- name: Cache XZ sources
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [20, 22]
node: [22, 24]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
node-version: '22'
cache: 'pnpm'
registry-url: 'https://registry.npmjs.org'

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
"xz-version.json"
],
"engines": {
"node": ">=20.0.0"
"node": ">=22.0.0"
},
"repository": {
"type": "git",
Expand Down
1 change: 1 addition & 0 deletions packages/nxz/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2022"],
"types": ["node"],
"outDir": "./lib",
"rootDir": "./src",
"declaration": true,
Expand Down
1 change: 1 addition & 0 deletions packages/tar-xz/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2022"],
"types": ["node"],
"outDir": "./lib",
"rootDir": "./src",
"declaration": true,
Expand Down
28 changes: 14 additions & 14 deletions pnpm-lock.yaml

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

2 changes: 1 addition & 1 deletion pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ catalog:
"@biomejs/biome": ^2.4.8
"@types/node": ^25.5.0
"@vitest/coverage-v8": ^4.1.0
typescript: ^5.9.3
typescript: ^6.0.2
vitest: ^4.1.0

onlyBuiltDependencies:
Expand Down
Loading