From 03b0362c6f2f1339f8245f8aaa03780ec65dcb2f Mon Sep 17 00:00:00 2001 From: Vitalii Dudnik Date: Mon, 11 May 2026 09:55:52 +0300 Subject: [PATCH] chore: update Node.js version to 24 and upgrade GitHub Actions to v6 in workflows --- .github/workflows/pull-request.yml | 6 +++--- .github/workflows/release-auto.yml | 8 ++++---- package.json | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 76fe036..150bbcf 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -9,10 +9,10 @@ jobs: name: 'Lint' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@v6 + - uses: actions/setup-node@v6 with: - node-version: 22 + node-version: 24 cache: 'npm' - run: npm ci - run: npm run lint:ci diff --git a/.github/workflows/release-auto.yml b/.github/workflows/release-auto.yml index 4fe73e9..c76515a 100644 --- a/.github/workflows/release-auto.yml +++ b/.github/workflows/release-auto.yml @@ -13,12 +13,12 @@ jobs: if: github.ref_name == 'main' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: - node-version: 22 + node-version: 24 cache: 'npm' registry-url: https://registry.npmjs.org/ - run: npm ci @@ -44,7 +44,7 @@ jobs: needs: vueless-update runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 - run: | diff --git a/package.json b/package.json index 3731ecf..8fde978 100644 --- a/package.json +++ b/package.json @@ -49,6 +49,6 @@ "vitest": "^4.1.5" }, "engines": { - "node": ">=20" + "node": ">=24" } }