Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 22 additions & 24 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,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
Expand All @@ -40,10 +40,10 @@ jobs:

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 ts:check
Expand All @@ -53,10 +53,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 test:ci
Expand All @@ -70,19 +70,18 @@ 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: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
# OIDC requires npm v11.5.1 or later.
# Node.js v20 comes with v10.8, so we need to update it:
- run: npm install -g npm@~11.10.0
- run: npm ci
- run: npm run release:prepare
Expand All @@ -96,7 +95,7 @@ jobs:
needs: [ release-beta ]
runs-on: ubuntu-latest
steps:
- uses: peter-evans/repository-dispatch@v3
- uses: peter-evans/repository-dispatch@v4
with:
token: ${{ secrets.ORG_PA_TOKEN }}
repository: vuelessjs/vueless-module-nuxt
Expand All @@ -111,19 +110,18 @@ 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: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
# OIDC requires npm v11.5.1 or later.
# Node.js v20 comes with v10.8, so we need to update it:
- run: npm install -g npm@~11.10.0
- run: npm ci
- run: npm run release:prepare
Expand All @@ -137,7 +135,7 @@ jobs:
needs: release
runs-on: ubuntu-latest
steps:
- uses: peter-evans/repository-dispatch@v3
- uses: peter-evans/repository-dispatch@v4
with:
token: ${{ secrets.ORG_PA_TOKEN }}
repository: vuelessjs/vueless-module-nuxt
Expand All @@ -153,7 +151,7 @@ jobs:
matrix:
repo: [ 'vuelessjs/vueless-quickstart', 'vuelessjs/vueless-quickstart-ts' ]
steps:
- uses: peter-evans/repository-dispatch@v3
- uses: peter-evans/repository-dispatch@v4
with:
token: ${{ secrets.ORG_PA_TOKEN }}
repository: ${{ matrix.repo }}
Expand All @@ -167,13 +165,13 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: main
fetch-depth: 0
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: 'npm'
- run: npm install -g npm@~11.10.0
- run: npm ci
Expand All @@ -198,7 +196,7 @@ jobs:
needs: [release, update-storybook]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
- run: |
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
"jackspeak": "2.3.6"
},
"engines": {
"node": ">=20"
"node": ">=24"
},
"repository": {
"type": "git",
Expand Down