Skip to content

Commit 869b00f

Browse files
committed
chore: Try fix build pipeline
1 parent f1cb1d5 commit 869b00f

File tree

4 files changed

+15
-16
lines changed

4 files changed

+15
-16
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@ jobs:
2121
node-version: [20]
2222

2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
with:
2626
fetch-depth: 0
27-
- uses: pnpm/action-setup@v2.0.1
27+
- uses: pnpm/action-setup@v4
2828
with:
2929
version: 9.15.3
3030
- name: Use Node.js ${{ matrix.node-version }}
31-
uses: actions/setup-node@v2
31+
uses: actions/setup-node@v4
3232
with:
3333
node-version: ${{ matrix.node-version }}
3434
cache: 'pnpm'
35-
- uses: actions/setup-java@v1
35+
- uses: actions/setup-java@v4
3636
with:
3737
java-version: '12.X'
3838
architecture: x64
@@ -63,7 +63,7 @@ jobs:
6363
run: |
6464
pnpm install --frozen-lockfile=false
6565
- name: Create Pull Request
66-
uses: peter-evans/create-pull-request@v3
66+
uses: peter-evans/create-pull-request@v7
6767
with:
6868
assignees: ci010
6969
reviewers: ci010

.github/workflows/github-pages.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
node-version: [20]
2121

2222
steps:
23-
- uses: actions/checkout@v3
24-
- uses: pnpm/action-setup@v2.0.1
23+
- uses: actions/checkout@v4
24+
- uses: pnpm/action-setup@v4
2525
with:
2626
version: 9.15.3
2727
- name: Use Node.js ${{ matrix.node-version }}
28-
uses: actions/setup-node@v2
28+
uses: actions/setup-node@v4
2929
with:
3030
node-version: ${{ matrix.node-version }}
3131
cache: 'pnpm'
@@ -38,7 +38,7 @@ jobs:
3838
run: |
3939
pnpm build:docs
4040
- name: Deploy to Github Pages
41-
uses: crazy-max/ghaction-github-pages@v1
41+
uses: crazy-max/ghaction-github-pages@v4
4242
with:
4343
target_branch: gh-pages
4444
build_dir: docs/

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
- uses: actions/checkout@v2
1616
with:
1717
ref: ${{ github.sha }}
18-
- uses: pnpm/action-setup@v2.0.1
18+
- uses: pnpm/action-setup@v4
1919
with:
2020
version: 9.15.3
2121
- name: Use Node.js
22-
uses: actions/setup-node@v2
22+
uses: actions/setup-node@v4
2323
with:
2424
node-version: 20
2525
registry-url: 'https://registry.npmjs.org'
@@ -54,7 +54,7 @@ jobs:
5454
run: |
5555
pnpm build:docs
5656
- name: Deploy to Github Pages
57-
uses: crazy-max/ghaction-github-pages@v1
57+
uses: crazy-max/ghaction-github-pages@v4
5858
with:
5959
target_branch: gh-pages
6060
build_dir: docs/

.github/workflows/validation.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,14 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@v2
18-
- uses: pnpm/action-setup@v2.0.1
18+
- uses: pnpm/action-setup@v4
1919
with:
2020
version: 9.15.3
2121
- name: Use Node.js ${{ matrix.node-version }}
22-
uses: actions/setup-node@v2
22+
uses: actions/setup-node@v4
2323
with:
2424
node-version: ${{ matrix.node-version }}
25-
cache: 'pnpm'
26-
- uses: actions/setup-java@v1
25+
- uses: actions/setup-java@v4
2726
with:
2827
java-version: '12.X'
2928
architecture: x64

0 commit comments

Comments
 (0)