@@ -19,21 +19,21 @@ jobs:
1919 build :
2020 runs-on : ubuntu-latest
2121 steps :
22- - uses : actions/checkout@v3
23- - uses : actions/setup-node@v3
22+ - uses : actions/checkout@v4
23+ - uses : actions/setup-node@v4
2424 with :
25- node-version : 16 .x
25+ node-version : 20 .x
2626 cache : npm
2727 - run : npm ci
2828 - run : npm run build
2929 - run : npm run format-check
3030 - run : npm run lint
3131 - run : npm run test
32- - uses : actions/upload-artifact@v3
32+ - uses : actions/upload-artifact@v4
3333 with :
3434 name : dist
3535 path : dist
36- - uses : actions/upload-artifact@v3
36+ - uses : actions/upload-artifact@v4
3737 with :
3838 name : action.yml
3939 path : action.yml
@@ -46,16 +46,16 @@ jobs:
4646 matrix :
4747 target : [built, committed]
4848 steps :
49- - uses : actions/checkout@v3
49+ - uses : actions/checkout@v4
5050 with :
5151 ref : main
5252 - if : matrix.target == 'built' || github.event_name == 'pull_request'
53- uses : actions/download-artifact@v3
53+ uses : actions/download-artifact@v4
5454 with :
5555 name : dist
5656 path : dist
5757 - if : matrix.target == 'built' || github.event_name == 'pull_request'
58- uses : actions/download-artifact@v3
58+ uses : actions/download-artifact@v4
5959 with :
6060 name : action.yml
6161 path : .
6868 uses : ./
6969 with :
7070 commit-message : ' [CI] test ${{ matrix.target }}'
71- committer : GitHub <noreply@ github.com>
72- author : ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
71+ committer : github-actions[bot] <41898282+github-actions[bot]@users.noreply. github.com>
72+ author : ${{ github.actor }} <${{ github.actor_id }}+${{ github. actor }}@users.noreply.github.com>
7373 title : ' [CI] test ${{ matrix.target }}'
7474 body : |
7575 - CI test case for target '${{ matrix.target }}'
9292 runs-on : ubuntu-latest
9393 steps :
9494 - name : Find Comment
95- uses : peter-evans/find-comment@v2
95+ uses : peter-evans/find-comment@v3
9696 id : fc
9797 with :
9898 issue-number : ${{ github.event.number }}
@@ -101,27 +101,30 @@ jobs:
101101
102102 - if : steps.fc.outputs.comment-id == ''
103103 name : Create comment
104- uses : peter-evans/create-or-update-comment@v3
104+ uses : peter-evans/create-or-update-comment@v4
105105 with :
106106 issue-number : ${{ github.event.number }}
107107 body : |
108108 Full test suite slash command (repository admin only)
109109 ```
110110 /test repository=${{ github.event.pull_request.head.repo.full_name }} ref=${{ github.event.pull_request.head.ref }} build=true
111111 ```
112+ ```
113+ /test repository=${{ github.event.pull_request.head.repo.full_name }} ref=${{ github.event.pull_request.head.ref }} build=true sign-commits=true
114+ ```
112115
113116 package :
114117 if : github.event_name == 'push' && github.ref == 'refs/heads/main'
115118 needs : [test]
116119 runs-on : ubuntu-latest
117120 steps :
118- - uses : actions/checkout@v3
119- - uses : actions/download-artifact@v3
121+ - uses : actions/checkout@v4
122+ - uses : actions/download-artifact@v4
120123 with :
121124 name : dist
122125 path : dist
123126 - name : Create Pull Request
124- uses : peter-evans/create-pull-request@v5
127+ uses : peter-evans/create-pull-request@v7
125128 with :
126129 token : ${{ secrets.ACTIONS_BOT_TOKEN }}
127130 commit-message : ' build: update distribution'
0 commit comments