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-lock.json b/package-lock.json index 3966dfc..671fafa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "create-vueless", - "version": "1.0.3", + "version": "1.0.4-beta.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "create-vueless", - "version": "1.0.3", + "version": "1.0.4-beta.0", "license": "MIT", "dependencies": { "degit": "^2.8.4", diff --git a/package.json b/package.json index 7d8ef2c..f757b53 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,14 @@ { "name": "create-vueless", - "version": "1.0.3", + "version": "1.0.4-beta.0", "description": "A tool to quickly start a Vue project with Vueless UI.", "author": "Johnny Grid (https://vueless.com)", "homepage": "https://vueless.com", "license": "MIT", "type": "module", + "engines": { + "node": ">=24" + }, "publishConfig": { "access": "public" },