diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ec0ff25..4217a4a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [ 20 ] + node: [ 22 ] name: Linting on Ubuntu with Node ${{ matrix.node }} steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index 4b16cc5..51a2516 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [ 20 ] + node: [ 22 ] name: Prettier on Ubuntu with Node ${{ matrix.node }} steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index f7737e7..eb6178c 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [ 20, 22 ] + node: [ 22, 24 ] name: Run tests on Ubuntu with Node ${{ matrix.node }} steps: - uses: actions/checkout@v4 @@ -20,7 +20,7 @@ jobs: runs-on: windows-latest strategy: matrix: - node: [ 20, 22 ] + node: [ 22, 24 ] name: Run tests on Windows with Node ${{ matrix.node }} steps: - uses: actions/checkout@v4 diff --git a/package.json b/package.json index e2bde22..f1c567c 100644 --- a/package.json +++ b/package.json @@ -88,13 +88,13 @@ "trailingComma": "none" }, "engines": { - "node": ">=20" + "node": ">=22" }, "peerDependencies": { "eslint": ">=7" }, "volta": { - "node": "20.18.0", + "node": "22.21.1", "yarn": "1.22.22" } }