Skip to content

Commit 5853b6d

Browse files
committed
Fix tests
1 parent ed36b8f commit 5853b6d

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
runs-on: ubuntu-latest
2424
strategy:
2525
matrix:
26-
node-version: [20, 22]
26+
node-version: [22, 24]
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v6
2929

30-
- uses: actions/setup-node@v4
30+
- uses: actions/setup-node@v6
3131
with:
3232
node-version: ${{ matrix.node-version }}
3333
cache: 'npm'
@@ -40,11 +40,11 @@ jobs:
4040
runs-on: ubuntu-latest
4141
strategy:
4242
matrix:
43-
node-version: [20, 22]
43+
node-version: [22, 24]
4444
steps:
45-
- uses: actions/checkout@v4
45+
- uses: actions/checkout@v6
4646

47-
- uses: actions/setup-node@v4
47+
- uses: actions/setup-node@v6
4848
with:
4949
node-version: ${{ matrix.node-version }}
5050
cache: 'npm'

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20
1+
22

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Deploy WordPress plugin and theme to the WordPress.org plugin and theme director
44

55
## Install
66

7-
Requires **Node 20 or later**.
7+
Requires **Node 22 or later**.
88

99
```sh
1010
npm install --save-dev wp-deployer
@@ -76,7 +76,7 @@ In `package.json`:
7676

7777
## Development
7878

79-
Contributors: use **Node 20 or later** (see `engines` in `package.json`). If you use [nvm](https://github.com/nvm-sh/nvm), run `nvm use` in the project root to pick the version from `.nvmrc`.
79+
Contributors: use **Node 22 or later** (see `engines` in `package.json`). If you use [nvm](https://github.com/nvm-sh/nvm), run `nvm use` in the project root to pick the version from `.nvmrc`.
8080

8181
## Credits
8282

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"author": "Nilambar Sharma <nilambar@outlook.com> (https://www.nilambar.net/)",
2424
"license": "MIT",
2525
"engines": {
26-
"node": ">=20.0.0"
26+
"node": ">=22.0.0"
2727
},
2828
"bugs": {
2929
"url": "https://github.com/ernilambar/wp-deployer/issues"

0 commit comments

Comments
 (0)