Skip to content

Commit 63645c5

Browse files
Merge pull request #71 from future-architect/feature/fix_library_version
fix library versions
2 parents a644ca5 + 758ce78 commit 63645c5

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

.github/workflows/GHPages.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ jobs:
88
deploy-docs:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
12-
- uses: actions/setup-node@v4
13-
with:
14-
node-version: '18'
15-
- name: Install Packages
16-
run: npm i
17-
- name: Build all
18-
run: npm run build
19-
- name: Deploy
20-
uses: peaceiris/actions-gh-pages@v4
21-
with:
22-
github_token: ${{ secrets.GITHUB_TOKEN }}
23-
publish_dir: ./docs
24-
force_orphan: true
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-node@v6
13+
with:
14+
node-version: "24"
15+
- name: Install Packages
16+
run: npm i
17+
- name: Build all
18+
run: npm run build
19+
- name: Deploy
20+
uses: peaceiris/actions-gh-pages@v4
21+
with:
22+
github_token: ${{ secrets.GITHUB_TOKEN }}
23+
publish_dir: ./docs
24+
force_orphan: true

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v4
14-
- uses: actions/setup-node@v4
14+
- uses: actions/setup-node@v6
1515
- name: Install Packages
1616
run: |
1717
npm i -f

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Checkout repo
1212
uses: actions/checkout@v4
1313
- name: Setup node
14-
uses: actions/setup-node@v4
14+
uses: actions/setup-node@v6
1515
- name: Install deps
1616
run: npm i -f
1717
- name: Format

0 commit comments

Comments
 (0)