diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2058feb..d0c0f09 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,10 +24,10 @@ jobs: if: "!contains(github.event.head_commit.message, 'GITBOOK')" 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 @@ -41,12 +41,12 @@ jobs: contents: write id-token: write 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: | @@ -68,12 +68,12 @@ jobs: contents: write id-token: write 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: | @@ -92,7 +92,7 @@ jobs: needs: [ release ] 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 7d8ef2c..e7fc78f 100644 --- a/package.json +++ b/package.json @@ -6,6 +6,9 @@ "homepage": "https://vueless.com", "license": "MIT", "type": "module", + "engines": { + "node": ">=24" + }, "publishConfig": { "access": "public" },