@@ -25,17 +25,17 @@ jobs:
2525
2626 strategy :
2727 matrix :
28- node-version : [18 .x]
28+ node-version : [20 .x]
2929
3030 steps :
31- - uses : actions/checkout@v3
31+ - uses : actions/checkout@v4
3232 with :
3333 submodules : recursive
3434 - name : Use Node.js ${{ matrix.node-version }}
35- uses : actions/setup-node@v3
35+ uses : actions/setup-node@v4
3636 with :
3737 node-version : ${{ matrix.node-version }}
38- cache : ' yarn'
38+ cache : " yarn"
3939 - name : Install
4040 run : |
4141 yarn
4848
4949 strategy :
5050 matrix :
51- node-version : [18 .x]
51+ node-version : [20 .x]
5252
5353 needs : lint
5454
@@ -57,14 +57,14 @@ jobs:
5757 GDRIVE_CLIENT_SECRET : ${{ secrets.GDRIVE_CLIENT_SECRET }}
5858
5959 steps :
60- - uses : actions/checkout@v3
60+ - uses : actions/checkout@v4
6161 with :
6262 submodules : recursive
6363 - name : Use Node.js ${{ matrix.node-version }}
64- uses : actions/setup-node@v3
64+ uses : actions/setup-node@v4
6565 with :
6666 node-version : ${{ matrix.node-version }}
67- cache : ' yarn'
67+ cache : " yarn"
6868 - name : Install
6969 run : |
7070 yarn
7474 env :
7575 NODE_OPTIONS : " --max-old-space-size=4096"
7676 - name : Upload dist
77- uses : actions/upload-artifact@v3
77+ uses : actions/upload-artifact@v4
7878 with :
7979 name : dist
8080 path : dist
@@ -83,11 +83,11 @@ jobs:
8383 uses : josStorer/get-current-time@v2
8484 id : time
8585 with :
86- format : ' YYYYMMDDHHmm'
86+ format : " YYYYMMDDHHmm"
8787 utcOffset : " +09:00"
8888 - name : Release
8989 if : ${{ github.event.inputs.release && github.ref == 'refs/heads/master' }}
90- uses : softprops/action-gh-release@v1
90+ uses : softprops/action-gh-release@v2
9191 with :
9292 files : dist/*.plugin.*
9393 name : ${{ steps.time.outputs.formattedTime }}
0 commit comments